aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/boxes.c
diff options
context:
space:
mode:
Diffstat (limited to 'boxes.c')
-rw-r--r--boxes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/boxes.c b/boxes.c
index 038f48f..b347a3f 100644
--- a/boxes.c
+++ b/boxes.c
@@ -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};