Tab Navigation in Sublime Text

2013-06-25

If you, like me, prefer ctrl+tab and ctrl+shift+tab to navigate through your tabs right and left, rather than the default stack-based navigation, add this to your your User keymap file. (Preferences -> Key Bindings – User):

{ “keys”: [“ctrl+tab”], “command”: “next_view” },

{ “keys”: [“ctrl+shift+tab”], “command”: “prev_view” }

via userecho

Written on June 25, 2013