diff options
author | Marco Peereboom <marco@conformal.com> | 2010-02-20 23:57:00 +0000 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2010-02-20 23:57:00 +0000 |
commit | df657a3507627170dd48e198340c6b860b368119 (patch) | |
tree | b0015bb0ab5396a3a3b74fd561caa44991b15766 | |
parent | 768f299ca261cbfb173e6436016f06a5b26a9559 (diff) | |
download | xombrero-df657a3507627170dd48e198340c6b860b368119.tar.gz |
Add some more tab commands
-rw-r--r-- | xxxterm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xxxterm.c b/xxxterm.c index 1104558..2d0457f 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -498,8 +498,11 @@ struct cmd { { "tabclose", 0, tabaction, {.i = XT_TAB_DELETE} }, { "quit", 0, tabaction, {.i = XT_TAB_DELQUIT} }, { "q", 0, tabaction, {.i = XT_TAB_DELQUIT} }, + /* XXX add count to these commands and add tabl and friends */ { "tabprevious", 0, movetab, {.i = XT_TAB_PREV} }, + { "tabp", 0, movetab, {.i = XT_TAB_PREV} }, { "tabnext", 0, movetab, {.i = XT_TAB_NEXT} }, + { "tabn", 0, movetab, {.i = XT_TAB_NEXT} }, }; void |