mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fix for opening bindings tab as initial tab
'fish_config bindings' command should open bindings tab as initially active tab
This commit is contained in:
parent
bfc78186f5
commit
a1b43b7a09
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue