Midnight Commander: Difference between revisions
Line 11: | Line 11: | ||
== Configuration == |
== Configuration == |
||
* '''mc''' will only save the option ini file if there is a directory <tt>~/.mc</tt> in home directory: |
* '''mc''' will only save the option ini file if there is a directory <tt>~/.mc</tt> in home directory: |
||
<source lang="bash" enclose="prevalid"> |
|||
mkdir ~/.mc |
mkdir ~/.mc |
||
</source> |
</source> |
||
* To use '''vi''' as standard editor/viewer |
* To use '''vi''' as standard editor/viewer |
||
: First menu '''Options''' → '''Configuration...''' → '''uncheck''' ''use internal edIt'' and ''Use internal view''. |
: First menu '''Options''' → '''Configuration...''' → '''uncheck''' ''use internal edIt'' and ''Use internal view''. |
||
: Next, at the end of file <tt>.mc/bindings</tt>: |
: Next, at the end of file <tt>.mc/bindings</tt>: |
||
<source lang="text"> |
|||
default/* |
default/* |
||
Open= |
Open= |
||
View=view %f |
View=view %f |
||
Edit=%var{EDITOR:vi} %f |
Edit=%var{EDITOR:vi} %f |
||
</source> |
</source> |
||
* Edit <tt>/etc/mc/mc.keymap*</tt> to use {{kb|C-n}} for '''Auto-Complete''' (instead of {{kb|Alt-Tab}} that does not work in graphical environment) (see [[#Keyboard shortcuts|below]]) |
* Edit <tt>/etc/mc/mc.keymap*</tt> to use {{kb|C-n}} for '''Auto-Complete''' (instead of {{kb|Alt-Tab}} that does not work in graphical environment) (see [[#Keyboard shortcuts|below]]) |
||
* Check box <tt>complete: show all</tt> (so that selection box is shown on first ambiguity) |
* Check box <tt>complete: show all</tt> (so that selection box is shown on first ambiguity) |
Revision as of 11:49, 22 June 2015
mc or Midnight Commander is a powerful file manager working in a shell terminal.
Links
- Cool review of mc in action
- The GNOME Commander, a X alternative of mc under Gnome
- Krusader, a X alternative of mc under KDE
VirtualFS
- Shell filesystem: /#sh:[user@]machine[:options]/[remote_dir]
Configuration
- mc will only save the option ini file if there is a directory ~/.mc in home directory:
mkdir ~/.mc
- To use vi as standard editor/viewer
- First menu Options → Configuration... → uncheck use internal edIt and Use internal view.
- Next, at the end of file .mc/bindings:
default/*
Open=
View=view %f
Edit=%var{EDITOR:vi} %f
- Edit /etc/mc/mc.keymap* to use C-n for Auto-Complete (instead of Alt-Tab that does not work in graphical environment) (see below)
- Check box complete: show all (so that selection box is shown on first ambiguity)
Keyboard shortcuts
Frequently used keyboard shortcuts (custom shortcuts defined with Learn Keys... are underlined):
General:
Shell Command Line
|
Directory panels
|
Some work-arounds / advices:
- Gnome-Terminal conflict — Gnome Terminal shortcuts conflict with MC. Disable them in Keyboard shortcuts menu (Terminal menu shortcut key (F10) and Menu Access Keys (A-h).
- Auto-Complete does not work — The auto-complete shortcut M-Tab (i.e. Alt-Tab) doesn't work in graphical environment because it is used for switching between windows. As a replacement, one can use Esc-Tab, or can define a new shortcut like C-n (as in Vim).
Old version — This can be done with Options... → Learn Keys...
Newer version — The learn keys trick does not work anymore. Remove the learn key line from ~/.mc/ini and instead edit all files /etc/mc/mc.keymap* as follows:
- For mc version 4.7:
PanelMoveDown = down ... InputComplete = alt-tab; ctrl-n ... TreeMoveDown = down
- For mc version 4.8 and above:
[panel] ... MoveDown = down ... [input] ... Complete = alt-tab; ctrl-n ...
- Lynx motion — This is a nice option to enable in the configuration menu. When enabled, enter a directory with right and exit a directory with left.
Official repository
Besides Ubuntu repository, the official one is here. To add it:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F82FBD49
Add file /etc/apt/sources.list.d:
deb http://ppa.launchpad.net/zyv/ppa/ubuntu lucid main deb-src http://ppa.launchpad.net/zyv/ppa/ubuntu lucid main
Then upgrade if needed:
sudo apt-get update
sudo apt-get upgrade