Skip to content

Instantly share code, notes, and snippets.

@pale2hall
Created February 1, 2018 16:01
Show Gist options
  • Save pale2hall/295943da4d802dbdd994916cc1ccf3dd to your computer and use it in GitHub Desktop.
Save pale2hall/295943da4d802dbdd994916cc1ccf3dd to your computer and use it in GitHub Desktop.
Fix SublimeText3 KeyBindings for next file, previous file / next tab, previous tab
/*
I'm saving this in a gist because it is infurating to not have CTRL-TAB and CTRL-SHIFT-TAB
work the same way in GnomeTerminal, Chrome, Firefox, IE, File Managers, etc.
Go to Preferences > Key Bindings,
Replace everything, or or apropriately add the code below. Save. Tab to your heart's delight.
Source: https://forum.sublimetext.com/t/switching-tabs-with-keyboard/427/5
*/
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment