diff options
Diffstat (limited to '')
-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 | }; |