summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-09 14:38:59 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-09 14:38:59 -0500
commit0135ebfa879af50f19ddc1495a36be3c030a6326 (patch)
tree080d209c633adc52560839ef2381b4fd1959a752 /command.h
parent7be42dc83ff694da2f1e66a59a14fe51d3e18fba (diff)
find + replace seems to be working
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 74741c4..fcdde38 100644
--- a/command.h
+++ b/command.h
@@ -52,6 +52,7 @@ ENUM_U16 {
CMD_CUT,
CMD_PASTE,
CMD_FIND,
+ CMD_FIND_REPLACE,
CMD_TAB_CLOSE,
CMD_TAB_SWITCH, // argument = index of tab (starting at 0)
@@ -115,6 +116,7 @@ static CommandName const command_names[CMD_COUNT] = {
{"cut", CMD_CUT},
{"paste", CMD_PASTE},
{"find", CMD_FIND},
+ {"find-replace", CMD_FIND_REPLACE},
{"tab-close", CMD_TAB_CLOSE},
{"tab-switch", CMD_TAB_SWITCH},
{"tab-next", CMD_TAB_NEXT},