summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-07 19:08:17 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-07 19:08:17 -0500
commite802f33329f5c9c2a0630693d42c737d4b75b409 (patch)
treef8be266956a39882c6aa53b978ce25ff9b3dfdef /command.h
parent4bfae2f646237d21d2ab2714241fe5273759526c (diff)
improved text rendering, started find
Diffstat (limited to 'command.h')
-rw-r--r--command.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/command.h b/command.h
index 906bf08..50741ed 100644
--- a/command.h
+++ b/command.h
@@ -45,10 +45,12 @@ ENUM_U16 {
CMD_NEW,
CMD_UNDO,
CMD_REDO,
+ CMD_QUIT,
+
CMD_COPY,
CMD_CUT,
CMD_PASTE,
- CMD_QUIT,
+ CMD_FIND,
CMD_TAB_CLOSE,
CMD_TAB_SWITCH, // argument = index of tab (starting at 0)
@@ -110,6 +112,7 @@ static CommandName const command_names[CMD_COUNT] = {
{"copy", CMD_COPY},
{"cut", CMD_CUT},
{"paste", CMD_PASTE},
+ {"find", CMD_FIND},
{"tab-close", CMD_TAB_CLOSE},
{"tab-switch", CMD_TAB_SWITCH},
{"tab-next", CMD_TAB_NEXT},