aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-27 21:51:25 +1000
committerDavid Walter Seikel2014-01-27 21:51:25 +1000
commit5f61305be97d5950f3c6fffc4ace9ce708785aeb (patch)
tree4f311c6270e1fa77e5f992fbc25efea025e60fb4
parentTab indented source code -> two space indents. Much more sane. (diff)
downloadboxes-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.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};