Skip to content

Instantly share code, notes, and snippets.

@tau-dev
Created October 14, 2020 15:22
Show Gist options
  • Select an option

  • Save tau-dev/42dcdb1987f524d304844a5f256c6444 to your computer and use it in GitHub Desktop.

Select an option

Save tau-dev/42dcdb1987f524d304844a5f256c6444 to your computer and use it in GitHub Desktop.
Sublime Text custom key bindings
[
{ "keys": ["ctrl+g"], "command": "toggle_side_bar" },
{ "keys": ["alt+left"], "command": "jump_back" },
{ "keys": ["alt+right"], "command": "jump_forward" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+left"], "command": "move", "args": {"by": "words", "forward": false } },
{ "keys": ["ctrl+right"], "command": "move", "args": {"by": "word_ends", "forward": true } },
{ "keys": ["ctrl+alt+left"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["ctrl+alt+right"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["ctrl+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true} },
{ "keys": ["ctrl+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false} },
{ "keys": ["ctrl+ß"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+alt+v"], "command": "paste_from_history" },
{ "keys": ["ctrl+r"], "command": "goto_symbol_in_project" },
{ "keys": ["ctrl+:"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+#"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"} },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+alt+tab"], "command": "prev_view" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment