diff options
author | David Walter Seikel | 2014-01-28 01:19:02 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-28 01:19:02 +1000 |
commit | e165558615f27b1ade81671c73356f60ef724888 (patch) | |
tree | 12973de201ceda9cc9c2e72156ce8f0b206cb327 | |
parent | Some Rob style simplifications. (diff) | |
download | boxes-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 | }; |