Skip to content

Instantly share code, notes, and snippets.

@asafch
Forked from nelanka/Default (OS X).sublime-keymap
Last active March 10, 2022 08:02
Show Gist options
  • Save asafch/908bbfea074e864e0cce3671c8ab2f7e to your computer and use it in GitHub Desktop.
Save asafch/908bbfea074e864e0cce3671c8ab2f7e to your computer and use it in GitHub Desktop.
Sublime Text 3 - User Key Bindings (IntelliJ IDEA Style) - OS X
[
{ "keys": ["super+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+`"], "command": "toggle_side_bar" },
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} },
{ "keys": ["alt+super+i"], "command": "reindent", "args": {"single_line": false}}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment