diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-16 18:08:22 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-16 18:08:22 -0500 |
commit | e10e68bfd7adda727d18dca27196798400f1a119 (patch) | |
tree | 853ba0856c92026c4cb68fb11a109a2e4fa1c6c3 /command.h | |
parent | 4b8db533619ee8eef64ded0793f413faaa7609c2 (diff) |
:build somewhat working!
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -66,6 +66,8 @@ ENUM_U16 { CMD_VIEW_ONLY, // toggle view-only mode CMD_BUILD, + CMD_BUILD_PREV_ERROR, + CMD_BUILD_NEXT_ERROR, CMD_ESCAPE, // by default this is the escape key. closes menus, etc. @@ -131,6 +133,8 @@ static CommandName const command_names[CMD_COUNT] = { {"decrease-text-size", CMD_TEXT_SIZE_DECREASE}, {"view-only", CMD_VIEW_ONLY}, {"build", CMD_BUILD}, + {"build-prev-error", CMD_BUILD_PREV_ERROR}, + {"build-next-error", CMD_BUILD_NEXT_ERROR}, {"escape", CMD_ESCAPE}, }; |