about summary refs log tree commit diff stats
path: root/src/command/cmd_defs.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2018-03-08 23:11:49 +0000
committerJames Booth <boothj5@gmail.com>2018-03-08 23:11:49 +0000
commita957c545d30750776e5b3307e71d4069e56a9ea5 (patch)
tree908e66be6668b743c9cf6f406c86defb27606d35 /src/command/cmd_defs.c
parent720dce866eb759a7b5ecdaff7c7d9ceeb6e2487c (diff)
downloadprofani-tty-a957c545d30750776e5b3307e71d4069e56a9ea5.tar.gz
Add max tabs preference for statusbar
Diffstat (limited to 'src/command/cmd_defs.c')
-rw-r--r--src/command/cmd_defs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c
index f8c50739..2634645f 100644
--- a/src/command/cmd_defs.c
+++ b/src/command/cmd_defs.c
@@ -1366,19 +1366,19 @@ static struct cmd_t command_defs[] =
         CMD_SYN(
             "/statusbar show empty|name",
             "/statusbar hide empty|name",
-//            "/statusbar maxtabs <value>",
+            "/statusbar maxtabs <value>",
             "/statusbar up",
             "/statusbar down")
         CMD_DESC(
             "Manage statusbar display preferences.")
         CMD_ARGS(
-//            { "maxtabs <value>",    "Set the maximum number of tabs to display, <value> must be between 0 and 10" },
+            { "maxtabs <value>",    "Set the maximum number of tabs to display, <value> must be between 0 and 10" },
             { "show|hide empty",    "Show or hide empty tabs." },
             { "show|hide name",     "Show or hide names in tabs." },
             { "up",                 "Move the status bar up the screen." },
             { "down",               "Move the status bar down the screen." })
         CMD_EXAMPLES(
-//            "/statusbar maxtabs 5",
+            "/statusbar maxtabs 5",
             "/statusbar show empty",
             "/statusbar hide name")
     },