Fix Weird Tab Cycling In Sublime Text 2
1
Fix Weird Tab Cycling In Sublime Text 2
By default, CTRL-TAB and SHIFT-CTRL-TAB don’t operate in the same way that Google Chrome tab cycling does. For example, when you press CTRL-TAB it doesn’t always cycle to the next open document. Here’s how to restore normal tabbing functionality.
- 1 ea Sublime Text 2
This can be found under preferences.
When your key bindings/keymap settings file opens up, add the following between the open and close brackets. { "keys": ["ctrl+tab"], "command": "next_view" }, { "keys": ["ctrl+shift+tab"], "command": "prev_view" }
Be sure to place this in the Key Bindings – User file; if you edit the System file, it will be overwritten when you update Sublime.
Since you’ve edited the Key Bindings – User preferences file, your settings will be saved even when you update Sublime.
- 1 ea Sublime Text 2