summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-03 14:30:48 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-03 14:30:48 -0500
commitd5488ef5c47878e04045a91d204cf1ccbdd9cd05 (patch)
tree23d11ed78e0cf33776f810e285aada539c4f1f28 /command.h
parentc59429d28718c1aae581f023d33466580118b0fc (diff)
:tab-move-left/right
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 cfbe2d9..d5d8062 100644
--- a/command.h
+++ b/command.h
@@ -61,6 +61,8 @@ ENUM_U16 {
CMD_TAB_SWITCH, // argument = index of tab (starting at 0)
CMD_TAB_NEXT,
CMD_TAB_PREV,
+ CMD_TAB_MOVE_LEFT,
+ CMD_TAB_MOVE_RIGHT,
CMD_TEXT_SIZE_INCREASE,
CMD_TEXT_SIZE_DECREASE,
@@ -141,6 +143,8 @@ static CommandName const command_names[] = {
{"tab-switch", CMD_TAB_SWITCH},
{"tab-next", CMD_TAB_NEXT},
{"tab-prev", CMD_TAB_PREV},
+ {"tab-move-left", CMD_TAB_MOVE_LEFT},
+ {"tab-move-right", CMD_TAB_MOVE_RIGHT},
{"increase-text-size", CMD_TEXT_SIZE_INCREASE},
{"decrease-text-size", CMD_TEXT_SIZE_DECREASE},
{"view-only", CMD_VIEW_ONLY},