Sublime Text 2/3 shortcut for showing / hiding / switching tabs

I am looking for a way to switch the tabs visibility in Sublime Text 2 or 3. I have seen the "hide tabs" plugin, but it does not meet my needs and does not make this script (the API seems to have changed since 2010).

I just want to bind a keyboard shortcut to switch tabs visibility.

+3
source share
2 answers

Open console Ctrl+ `and enter:

sublime.log_commands(True)

Then click "View" → "Switch Tabs" yourself and watch the console:

command: toggle_tabs

. "" → " " - "". JSON User, . , :

{ "keys": ["ctrl+shift+t"], "command": "toggle_tabs" }
+24

Mac OS X, " " > "" > "" > " ", .

+2

All Articles