aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-28 01:19:47 +1000
committerDavid Walter Seikel2014-01-28 01:19:47 +1000
commit731f63987c55c944ee54b55ebe71631bdff8fbcd (patch)
treedabb2967b1b6ae479d0506f43e8e6d3b685057e5
parentMC gets some WS style Control duplicates for lazy control key fingers. (diff)
downloadboxes-731f63987c55c944ee54b55ebe71631bdff8fbcd.zip
boxes-731f63987c55c944ee54b55ebe71631bdff8fbcd.tar.gz
boxes-731f63987c55c944ee54b55ebe71631bdff8fbcd.tar.bz2
boxes-731f63987c55c944ee54b55ebe71631bdff8fbcd.tar.xz
More command comments.
-rw-r--r--boxes.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/boxes.c b/boxes.c
index ea0ad07..560c9ab 100644
--- a/boxes.c
+++ b/boxes.c
@@ -2020,7 +2020,7 @@ struct keyCommand simpleEmacsKeys[] =
2020 {"^N", "next-line"}, 2020 {"^N", "next-line"},
2021 {"End", "end-of-line"}, 2021 {"End", "end-of-line"},
2022 {"^E", "end-of-line"}, 2022 {"^E", "end-of-line"},
2023 {"^X^C", "save-buffers-kill-emacs"}, // Damn, Ctrl C getting eaten by default signal handling. 2023 {"^X^C", "save-buffers-kill-emacs"}, // Damn, Ctrl C getting eaten by default signal handling. On the other hand, at least the "kill-emacs" part will work. lol
2024 {"^Xq", "save-buffers-kill-emacs"}, // TODO - Faking this so we can actually exit. Remove it later. 2024 {"^Xq", "save-buffers-kill-emacs"}, // TODO - Faking this so we can actually exit. Remove it later.
2025 {"^X^S", "save-buffer"}, 2025 {"^X^S", "save-buffer"},
2026 {"Home", "beginning-of-line"}, 2026 {"Home", "beginning-of-line"},
@@ -2200,8 +2200,8 @@ struct keyCommand simpleLessKeys[] =
2200 {"Return", "downLine"}, 2200 {"Return", "downLine"},
2201 {"End", "endOfLine"}, 2201 {"End", "endOfLine"},
2202 {"q", "quit"}, 2202 {"q", "quit"},
2203 {":q", "quit"}, 2203 {":q", "quit"}, // TODO - A vi ism, should do ex command stuff instead.
2204 {"ZZ", "quit"}, 2204 {"ZZ", "quit"}, // This one will suck.
2205 {"PgDn", "downPage"}, 2205 {"PgDn", "downPage"},
2206 {"f", "downPage"}, 2206 {"f", "downPage"},
2207 {" ", "downPage"}, 2207 {" ", "downPage"},
@@ -2237,8 +2237,8 @@ struct keyCommand simpleMoreKeys[] =
2237 {"j", "downLine"}, 2237 {"j", "downLine"},
2238 {"Return", "downLine"}, 2238 {"Return", "downLine"},
2239 {"q", "quit"}, 2239 {"q", "quit"},
2240 {":q", "quit"}, 2240 {":q", "quit"}, // See comments for "less".
2241 {"ZZ", "quit"}, 2241 {"ZZ", "quit"}, // See comments for "less".
2242 {"f", "downPage"}, 2242 {"f", "downPage"},
2243 {" ", "downPage"}, 2243 {" ", "downPage"},
2244 {"^F", "downPage"}, 2244 {"^F", "downPage"},