summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-16 18:08:22 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-16 18:08:22 -0500
commite10e68bfd7adda727d18dca27196798400f1a119 (patch)
tree853ba0856c92026c4cb68fb11a109a2e4fa1c6c3 /command.h
parent4b8db533619ee8eef64ded0793f413faaa7609c2 (diff)
:build somewhat working!
Diffstat (limited to 'command.h')
-rw-r--r--command.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/command.h b/command.h
index 1e15886..61fd04b 100644
--- a/command.h
+++ b/command.h
@@ -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},
};