diff options
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -71,6 +71,9 @@ ENUM_U16 { CMD_GOTO_DEFINITION, // "go to definition of..." CMD_GOTO_LINE, // open "goto line..." menu + + CMD_SPLIT_HORIZONTAL, + CMD_SPLIT_VERTICAL, CMD_ESCAPE, // by default this is the escape key. closes menus, etc. @@ -140,6 +143,8 @@ static CommandName const command_names[CMD_COUNT] = { {"build-next-error", CMD_BUILD_NEXT_ERROR}, {"goto-definition", CMD_GOTO_DEFINITION}, {"goto-line", CMD_GOTO_LINE}, + {"split-horizontal", CMD_SPLIT_HORIZONTAL}, + {"split-vertical", CMD_SPLIT_VERTICAL}, {"escape", CMD_ESCAPE}, }; |