aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools/web_config/webconfig.py
diff options
context:
space:
mode:
authorGravatar Siteshwar Vashisht <siteshwar@gmail.com>2014-01-30 23:53:49 +0530
committerGravatar Siteshwar Vashisht <siteshwar@gmail.com>2014-01-30 23:53:49 +0530
commita1b43b7a09b223e9add2b3c6aa6e8e46e8bff0e5 (patch)
tree1eb67ed8fda833190dbfec9473cc6dd3cb9db72d /share/tools/web_config/webconfig.py
parentbfc78186f5eed719630a42ec24c11aa2dc1aea07 (diff)
Fix for opening bindings tab as initial tab
'fish_config bindings' command should open bindings tab as initially active tab
Diffstat (limited to 'share/tools/web_config/webconfig.py')
-rwxr-xr-xshare/tools/web_config/webconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/web_config/webconfig.py b/share/tools/web_config/webconfig.py
index 23b89acf..52d9990b 100755
--- a/share/tools/web_config/webconfig.py
+++ b/share/tools/web_config/webconfig.py
@@ -830,7 +830,7 @@ if PORT > 9000:
# Just look at the first letter
initial_tab = ''
if len(sys.argv) > 1:
- for tab in ['functions', 'prompt', 'colors', 'variables', 'history']:
+ for tab in ['functions', 'prompt', 'colors', 'variables', 'history', 'bindings']:
if tab.startswith(sys.argv[1]):
initial_tab = '#' + tab
break