aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-28 01:19:02 +1000
committerDavid Walter Seikel2014-01-28 01:19:02 +1000
commite165558615f27b1ade81671c73356f60ef724888 (patch)
tree12973de201ceda9cc9c2e72156ce8f0b206cb327
parentSome Rob style simplifications. (diff)
downloadboxes-e165558615f27b1ade81671c73356f60ef724888.zip
boxes-e165558615f27b1ade81671c73356f60ef724888.tar.gz
boxes-e165558615f27b1ade81671c73356f60ef724888.tar.bz2
boxes-e165558615f27b1ade81671c73356f60ef724888.tar.xz
MC gets some WS style Control duplicates for lazy control key fingers.
-rw-r--r--boxes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/boxes.c b/boxes.c
index 02af59e..ea0ad07 100644
--- a/boxes.c
+++ b/boxes.c
@@ -2289,7 +2289,9 @@ struct keyCommand simpleMceditKeys[] =
2289 {"^Q|", "splitV"}, // MC doesn't have a split window concept, so make these up to match tmux more or less. 2289 {"^Q|", "splitV"}, // MC doesn't have a split window concept, so make these up to match tmux more or less.
2290 {"^Q-", "splitH"}, 2290 {"^Q-", "splitH"},
2291 {"^Qo", "switchBoxes"}, 2291 {"^Qo", "switchBoxes"},
2292 {"^Q^O", "switchBoxes"},
2292 {"^Qx", "deleteBox"}, 2293 {"^Qx", "deleteBox"},
2294 {"^Q^X", "deleteBox"},
2293 {"Up", "upLine"}, 2295 {"Up", "upLine"},
2294 {NULL, NULL} 2296 {NULL, NULL}
2295}; 2297};