Skip to content

Instantly share code, notes, and snippets.

@joaocunha
Last active December 28, 2015 16:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaocunha/7526571 to your computer and use it in GitHub Desktop.
Save joaocunha/7526571 to your computer and use it in GitHub Desktop.
Sublime Text Paste & Indent Shortcut
// 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