Skip to content

Instantly share code, notes, and snippets.

@lumpysimon
lumpysimon / gist:5212084
Last active December 15, 2015 05:49 — forked from twosixcode/gist:1988097
Sublime Text key binding: swap paste & paste-and-indent (put in 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" }