Skip to content

Instantly share code, notes, and snippets.

@thedanheller
Created November 16, 2017 13:21
Show Gist options
  • Save thedanheller/a972ca0675e6dec4161e938f105ccd19 to your computer and use it in GitHub Desktop.
Save thedanheller/a972ca0675e6dec4161e938f105ccd19 to your computer and use it in GitHub Desktop.
ST3 key bindings
[
{ "keys": ["ctrl+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
// { "keys": ["super+m"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+e"], "command": "run_emmet_action", "args": {"action": "expand_abbreviation"} },
{ "keys": ["super+alt+i"], "command": "replace_all" },
{ "keys": ["super+shift+k"], "command": "reveal_in_side_bar"},
{ "keys": ["super+b"], "command": "js_prettier" },
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+l"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+shift+l"], "command": "expand_selection", "args": {"to": "line"} },
{ "keys": ["ctrl+alt+f"], "command": "find_next_conflict" },
{ "keys": ["ctrl+alt+o"], "command": "keep", "args": { "keep": "ours" } },
{ "keys": ["ctrl+alt+t"], "command": "keep", "args": { "keep": "theirs" } },
{ "keys": ["ctrl+alt+a"], "command": "keep", "args": { "keep": "ancestor" } },
{ "keys": ["ctrl+alt+c"], "command": "list_conflict_files" },
{ "keys": ["super+shift+r"], "command": "goto_symbol_in_project" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment