diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-03 19:17:48 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-03 19:17:48 -0500 |
commit | e3eb333ae2b07467e14dd9e2f845889f75f01a16 (patch) | |
tree | 64599a9b11f757a5e480c9f94b3ddedb57678d4e /command.h | |
parent | 74cae07c859e68876ee98b99e1c1761d4c205484 (diff) |
start autocomplete
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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}, |