summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'command.h')
-rw-r--r--command.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/command.h b/command.h
index fcdde38..e366f17 100644
--- a/command.h
+++ b/command.h
@@ -26,6 +26,7 @@ ENUM_U16 {
// insertion
CMD_TAB, // insert '\t'
+ CMD_BACKTAB,
CMD_NEWLINE, // insert '\n' + autoindent -- also used to submit line buffers
CMD_NEWLINE_BACK,
@@ -98,6 +99,7 @@ static CommandName const command_names[CMD_COUNT] = {
{"page-up", CMD_PAGE_UP},
{"page-down", CMD_PAGE_DOWN},
{"tab", CMD_TAB},
+ {"backtab", CMD_BACKTAB},
{"newline", CMD_NEWLINE},
{"newline-back", CMD_NEWLINE_BACK},
{"backspace", CMD_BACKSPACE},