Skip to content

Instantly share code, notes, and snippets.

@davidshimjs
Created October 25, 2013 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidshimjs/7150164 to your computer and use it in GitHub Desktop.
Save davidshimjs/7150164 to your computer and use it in GitHub Desktop.
Sublime Text 2 shortcut on Mac OS X for Eclipse users
[
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["super+alt+down"], "command": "duplicate_line" },
{ "keys": ["super+shift+s"], "command": "save_all" },
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["shift+super+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+space"], "command": "auto_complete" },
{ "keys": ["super+g"], "command": "find_under_expand" },
{ "keys": ["super+k"], "command": "find_under" },
{ "keys": ["super+shift+k"], "command": "find_under_prev" },
{ "keys": ["super+shift+alt+g"], "command": "find_all_under" },
{ "keys": ["super+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
}
]
@sh4wn
Copy link

sh4wn commented Oct 28, 2021

❤️

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