summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-03 19:17:48 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-03 19:17:48 -0500
commite3eb333ae2b07467e14dd9e2f845889f75f01a16 (patch)
tree64599a9b11f757a5e480c9f94b3ddedb57678d4e /command.h
parent74cae07c859e68876ee98b99e1c1761d4c205484 (diff)
start autocomplete
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 41bab31..1c9be20 100644
--- a/command.h
+++ b/command.h
@@ -50,7 +50,9 @@ ENUM_U16 {
CMD_COMMAND_SELECTOR,
CMD_OPEN_CONFIG,
CMD_QUIT,
-
+
+ CMD_AUTOCOMPLETE,
+
CMD_COPY,
CMD_CUT,
CMD_PASTE,
@@ -138,6 +140,7 @@ static CommandName const command_names[] = {
{"copy", CMD_COPY},
{"cut", CMD_CUT},
{"paste", CMD_PASTE},
+ {"autocomplete", CMD_AUTOCOMPLETE},
{"find", CMD_FIND},
{"find-replace", CMD_FIND_REPLACE},
{"tab-close", CMD_TAB_CLOSE},