diff options
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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}, |