Skip to content

Instantly share code, notes, and snippets.

@twosixcode
Created March 6, 2012 18:40
Show Gist options
  • Save twosixcode/1988097 to your computer and use it in GitHub Desktop.
Save twosixcode/1988097 to your computer and use it in GitHub Desktop.
Make "Paste and Indent" the default paste in Sublime Text 2
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
@rcanand
Copy link

rcanand commented Jan 22, 2017

👍

@adamwgriffin
Copy link

👍

@SirCameron
Copy link

Dude, you are the King of Town!

@qmclaugh
Copy link

qmclaugh commented Mar 7, 2018

Love it

@andriy-baran
Copy link

👍

@nkn81
Copy link

nkn81 commented Aug 22, 2018

Super Siked !! Works with Sublime Version 3.1.1, Build 3176

@josezulu
Copy link

josezulu commented Mar 1, 2020

Thanks!

@fjarrett
Copy link

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