Last active
December 21, 2015 03:09
-
-
Save andymcfee/6240309 to your computer and use it in GitHub Desktop.
Sublime Text Key Binding settings for better indention of copy-paste. Add this to Sublime Text > Preferences > Key Bindings - User
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
[ | |
// swap the keybindings for paste and paste_and_indent | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
// navigate through tabs with cmd + arrows | |
{ "keys": ["super+left"], "command": "next_view_in_stack" }, | |
{ "keys": ["super+right"], "command": "prev_view_in_stack" }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PC users change "super" to "ctrl"