This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/posts/2014/sublime-text-ctrl-tab-key-bindings.md
2023-12-13 12:18:32 -08:00

880 B

date title description draft tags
2014-08-06 Sublime Text 3 - ctrl + tab key bindings I use Sublime Text as my primary text editor but have never liked the default tab behavior where ctrl + tab takes you to the most recently used tab rather than the next horizontal tab in the tab bar (ctrl + shift + tab does the reverse). false
Sublime Text

I use Sublime Text as my primary text editor but have never liked the default tab behavior where ctrl + tab takes you to the most recently used tab rather than the next horizontal tab in the tab bar (ctrl + shift + tab does the reverse).

To fix this, I've added a few lines to the user key bindings file (located in Preferences > Key Bindings - User):

{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }