Skip to content

Instantly share code, notes, and snippets.

@seperman
Created January 27, 2020 07:50
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 seperman/1a8e4ad3514656d428f82b24307f4223 to your computer and use it in GitHub Desktop.
Save seperman/1a8e4ad3514656d428f82b24307f4223 to your computer and use it in GitHub Desktop.
Sublime keybinding for Ubuntu
[
{ "keys": ["ctrl+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["super+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+super+/"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+g"], "command": "find_next" },
{ "keys": ["ctrl+shift+g"], "command": "find_prev" },
{ "keys": ["alt+ctrl+i"], "command": "find_under" },
{ "keys": ["shift+alt+ctrl+g"], "command": "find_under_prev" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["super+shift+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["alt+`"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["pageup"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["pagedown"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["alt+right"], "command": "next_view" },
{ "keys": ["alt+left"], "command": "prev_view" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment