Created
March 6, 2012 18:40
-
Star
(192)
You must be signed in to star a gist -
Fork
(11)
You must be signed in to fork a gist
-
-
Save twosixcode/1988097 to your computer and use it in GitHub Desktop.
Make "Paste and Indent" the default paste in Sublime Text 2
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
// swap the keybindings for paste and paste_and_indent | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" } |
Thank you!
Any chance on replacing: swap_line_up
by swap_line_up_and_indent
?
http://superuser.com/questions/1089928/sublime-text-swap-line-and-indent
👍
👍
👍
Dude, you are the King of Town!
Love it
👍
Super Siked !! Works with Sublime Version 3.1.1, Build 3176
Thanks!
This changed my life. I already use super+shift+v
for Flycut clipboard history, so mine is:
{ "keys": ["super+left+v"], "command": "paste" },
{ "keys": ["super+v"], "command": "paste_and_indent" }
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
✊