diff options
author | David Walter Seikel | 2014-01-27 21:51:25 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-27 21:51:25 +1000 |
commit | 5f61305be97d5950f3c6fffc4ace9ce708785aeb (patch) | |
tree | 4f311c6270e1fa77e5f992fbc25efea025e60fb4 | |
parent | Tab indented source code -> two space indents. Much more sane. (diff) | |
download | boxes-5f61305be97d5950f3c6fffc4ace9ce708785aeb.zip boxes-5f61305be97d5950f3c6fffc4ace9ce708785aeb.tar.gz boxes-5f61305be97d5950f3c6fffc4ace9ce708785aeb.tar.bz2 boxes-5f61305be97d5950f3c6fffc4ace9ce708785aeb.tar.xz |
Choose a new control key for box splitting in MC. Ctrl-o is in use.
-rw-r--r-- | boxes.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2278,10 +2278,10 @@ struct keyCommand simpleMceditKeys[] = | |||
2278 | {"Shift F2", "switchMode"}, // MC doesn't have a command mode. | 2278 | {"Shift F2", "switchMode"}, // MC doesn't have a command mode. |
2279 | {"^[x", "switchMode"}, // Emacs like. | 2279 | {"^[x", "switchMode"}, // Emacs like. |
2280 | {"^[:", "switchMode"}, // Sorta vi like. | 2280 | {"^[:", "switchMode"}, // Sorta vi like. |
2281 | {"^O|", "splitV"}, // MC doesn't have a split window concept, so make these up to match tmux more or less. | 2281 | {"^Q|", "splitV"}, // MC doesn't have a split window concept, so make these up to match tmux more or less. |
2282 | {"^O-", "splitH"}, | 2282 | {"^Q-", "splitH"}, |
2283 | {"^Oo", "switchBoxes"}, | 2283 | {"^Qo", "switchBoxes"}, |
2284 | {"^Ox", "deleteBox"}, | 2284 | {"^Qx", "deleteBox"}, |
2285 | {"Up", "upLine"}, | 2285 | {"Up", "upLine"}, |
2286 | {NULL, NULL} | 2286 | {NULL, NULL} |
2287 | }; | 2287 | }; |