Last active
December 28, 2015 16:09
-
-
Save joaocunha/7526571 to your computer and use it in GitHub Desktop.
Sublime Text Paste & Indent Shortcut
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
// Replaces pasting with paste and indent. | |
// Add to [Preferences → Key Bindings - User] file | |
// MAC | |
{ "keys": ["super+v"], "command": "paste_and_indent"}, | |
{ "keys": ["super+shift+v"], "command": "paste" } | |
// Windows/Linux | |
{ "keys": ["ctrl+v"], "command": "paste_and_indent"}, | |
{ "keys": ["ctrl+shift+v"], "command": "paste" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment