Skip to content

Instantly share code, notes, and snippets.

@nelanka
Created October 16, 2014 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nelanka/867190e04f5a81b31fc9 to your computer and use it in GitHub Desktop.
Save nelanka/867190e04f5a81b31fc9 to your computer and use it in GitHub Desktop.
Sublime Text 3 - User Key Bindings (IntelliJ IDEA Style) - Windows
[
{ "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+d"], "command": "duplicate_line" }
]
@VBourdine
Copy link

Add those two lines to move lines up and down like in IntelliJ

{ "keys": ["shift+alt+up"], "command": "swap_line_up" },
{ "keys": ["shift+alt+down"], "command": "swap_line_down" }

@gcruz-mc
Copy link

gcruz-mc commented Jan 6, 2021

Thank you for putting this together!

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