Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mommel/9d5e0ec9c37747d5369f9b1ba20e52fa to your computer and use it in GitHub Desktop.
Save mommel/9d5e0ec9c37747d5369f9b1ba20e52fa to your computer and use it in GitHub Desktop.
[
{ "keys": ["super+o"], "command": "show_overlay", "args": {"overlay": "goto","show_files": true } },
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } },
{ "keys": ["leftalt+leftshift+up"], "command": "swap_line_up" },
{ "keys": ["leftalt+leftshift+down"], "command": "swap_line_down" },
{ "keys": ["super+shift+c"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["super+shift+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+e"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+-"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+-"], "command": "toggle_comment", "args": { "block": true } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment