Skip to content

Instantly share code, notes, and snippets.

@nelanka
Created October 16, 2014 14:03
Show Gist options
  • Select an option

  • Save nelanka/867190e04f5a81b31fc9 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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

gcruz-mc commented Jan 6, 2021

Copy link
Copy Markdown

Thank you for putting this together!

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