diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-04 09:48:53 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-04 09:48:53 -0500 |
commit | c8fe98bf37f5364543b365d6d423a785c3c66452 (patch) | |
tree | 17b6fe875c7c1cdc8e6f1dd398dbcbe6bf8ad3b0 /command.h | |
parent | 6ef4720bba8fcb90bcbdca5d7766b76816fc58c5 (diff) |
completion working, it seems
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -52,6 +52,7 @@ ENUM_U16 { CMD_QUIT, CMD_AUTOCOMPLETE, + CMD_AUTOCOMPLETE_BACK, CMD_COPY, CMD_CUT, @@ -141,6 +142,7 @@ static CommandName const command_names[] = { {"cut", CMD_CUT}, {"paste", CMD_PASTE}, {"autocomplete", CMD_AUTOCOMPLETE}, + {"autocomplete-back", CMD_AUTOCOMPLETE_BACK}, {"find", CMD_FIND}, {"find-replace", CMD_FIND_REPLACE}, {"tab-close", CMD_TAB_CLOSE}, |