Sublime Forum

Tabs Sorting -> how to bind a key?

#1

Hello,

How could I bind a key for sorting the tabs by Name?

Thank you!

0 Likes

#2

Does Sublime have builtin tab sorting? I was not aware. However, I believe plugins do exist.

Check out https://github.com/bizoo/SortTabs It says ST2 but it actually works in ST3 as well.

Then you can add something like to your keybindings Sublime Text Keybindings

{
    "keys": ["shift+super+s"], "command": "sort_tabs_by_name"
},
0 Likes