Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VBourdine/f8068a19303c0ecadf082f4b3a479241 to your computer and use it in GitHub Desktop.
Save VBourdine/f8068a19303c0ecadf082f4b3a479241 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" },
{ "keys": ["shift+alt+up"], "command": "swap_line_up" },
{ "keys": ["shift+alt+down"], "command": "swap_line_down" }
]
@kamilmodest
Copy link

A bit corrected for mac and added two more:

[
    { "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
    { "keys": ["super+d"], "command": "duplicate_line" },
    { "keys": ["shift+alt+up"], "command": "swap_line_up" },
    { "keys": ["shift+alt+down"], "command": "swap_line_down" },
    { "keys": ["super+["], "command": "jump_back" },
    { "keys": ["super+]"], "command": "jump_forward" }
]

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