Created
February 1, 2018 16:01
-
-
Save pale2hall/295943da4d802dbdd994916cc1ccf3dd to your computer and use it in GitHub Desktop.
Fix SublimeText3 KeyBindings for next file, previous file / next tab, previous tab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
/* | |
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