Skip to content

Instantly share code, notes, and snippets.

@andymcfee
Last active December 21, 2015 03:09
Show Gist options
  • Save andymcfee/6240309 to your computer and use it in GitHub Desktop.
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
[
// 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" },
]
@andymcfee
Copy link
Author

PC users change "super" to "ctrl"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment