diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-02 16:58:54 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-02 17:00:50 -0500 |
commit | 64bfab15c19ef0e0055b7b80b315a872b8946ce4 (patch) | |
tree | 127262140ebe8008c10e16e5009e1b8257bc9ced /command.h | |
parent | 3600ff8d24ea87a0b63e4931010e0dd52232246c (diff) |
start command selector
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -44,6 +44,7 @@ ENUM_U16 { CMD_SAVE, // save current buffer CMD_SAVE_AS, CMD_SAVE_ALL, // save all open buffers with unsaved changes + CMD_COMMAND_SELECTOR, CMD_NEW, CMD_UNDO, CMD_REDO, @@ -126,6 +127,7 @@ static CommandName const command_names[] = { {"save-as", CMD_SAVE_AS}, {"save-all", CMD_SAVE_ALL}, {"quit", CMD_QUIT}, + {"command-selector", CMD_COMMAND_SELECTOR}, {"undo", CMD_UNDO}, {"redo", CMD_REDO}, {"copy", CMD_COPY}, |