Skip to content

Instantly share code, notes, and snippets.

@nelanka
Last active November 15, 2019 03:10
Show Gist options
  • Save nelanka/2e72b2ffa8fca1b2b799 to your computer and use it in GitHub Desktop.
Save nelanka/2e72b2ffa8fca1b2b799 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" }, -- Default is super+shift+D
{ "keys": ["super+`"], "command": "toggle_side_bar" },
{ "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"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment