summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-26 15:42:34 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-26 15:42:34 -0500
commit65b6850a7dc3211566993f8a2cfacf61f5b4d6a2 (patch)
tree6fb8cc7417273db106d921224c990f78d8f3cdf4 /command.h
parent3050f7539aa780f15ea1ae4bd0296dfbb57b8e03 (diff)
auto-indent
Diffstat (limited to 'command.h')
-rw-r--r--command.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/command.h b/command.h
index 79d8a1d..9793d2a 100644
--- a/command.h
+++ b/command.h
@@ -24,6 +24,10 @@ ENUM_U16 {
CMD_SELECT_END_OF_FILE,
CMD_SELECT_ALL, // select entire buffer
+ // insertion
+ CMD_TAB, // insert '\t'
+ CMD_NEWLINE, // insert '\n' + autoindent -- also used to submit line buffers
+
// scrolling
CMD_PAGE_UP, // move cursor up one page up (where one page is however tall the buffer is)
CMD_PAGE_DOWN,
@@ -48,8 +52,6 @@ ENUM_U16 {
CMD_ESCAPE, // by default this is the escape key. closes menus, etc.
- CMD_SUBMIT_LINE_BUFFER, // submit "line buffer" value -- the line buffer is where you type file names when opening files, etc.
-
CMD_COUNT
} ENUM_U16_END(Command);
@@ -83,6 +85,8 @@ static CommandName const command_names[CMD_COUNT] = {
{"select-all", CMD_SELECT_ALL},
{"page-up", CMD_PAGE_UP},
{"page-down", CMD_PAGE_DOWN},
+ {"tab", CMD_TAB},
+ {"newline", CMD_NEWLINE},
{"backspace", CMD_BACKSPACE},
{"delete", CMD_DELETE},
{"backspace-word", CMD_BACKSPACE_WORD},
@@ -97,7 +101,6 @@ static CommandName const command_names[CMD_COUNT] = {
{"paste", CMD_PASTE},
{"increase-text-size", CMD_TEXT_SIZE_INCREASE},
{"decrease-text-size", CMD_TEXT_SIZE_DECREASE},
- {"escape", CMD_ESCAPE},
- {"submit-line-buffer", CMD_SUBMIT_LINE_BUFFER}
+ {"escape", CMD_ESCAPE}
};