Skip to content

Instantly share code, notes, and snippets.

@Cicolas
Last active October 26, 2022 12:57
Show Gist options
  • Save Cicolas/7ad6b6cfe9c9e0195b9cba3e9263ec05 to your computer and use it in GitHub Desktop.
Save Cicolas/7ad6b6cfe9c9e0195b9cba3e9263ec05 to your computer and use it in GitHub Desktop.
Sublime keybindings
[
{ "keys": ["ctrl+m"], "command": "find_under_expand" },
{ "keys": ["f12"], "command": "move_to", "args": {"to": "brackets"} },
{ "keys": ["ctrl+;"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+;"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+d"], "command": "goto_definition" },
{ "keys": ["ctrl+shift+e"], "command": "focus_side_bar" },
{ "keys": ["ctrl+shift+e"], "command": "focus_side_bar" },
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" },
{ "keys": ["f6"], "command": "build" },
{ "keys": ["ctrl+shift+i"], "command": "reindent", "context":
[
{ "key": "setting.auto_indent", "operator": "equal", "operand": true },
]
},
{ "keys": ["ctrl+alt+p"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} },
{ "keys": ["ctrl+shift+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment