Skip to content

Instantly share code, notes, and snippets.

@cod3cow
Created May 29, 2017 09:53
Show Gist options
  • Save cod3cow/4636c76526225f8fc6ff688015a2a005 to your computer and use it in GitHub Desktop.
Save cod3cow/4636c76526225f8fc6ff688015a2a005 to your computer and use it in GitHub Desktop.
sublime text - paste and indent
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
// linux and windows
//{ "keys": ["ctrl+v"], "command": "paste_and_indent" },
//{ "keys": ["ctrl+shift+v"], "command": "paste" }
@cod3cow
Copy link
Author

cod3cow commented May 29, 2017

Preferences -> Key Bindings

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