Skip to content

Instantly share code, notes, and snippets.

@solrevdev
Last active April 4, 2022 10:31
Show Gist options
  • Save solrevdev/b22effcbfcb3c89bd7216ddb18e297b8 to your computer and use it in GitHub Desktop.
Save solrevdev/b22effcbfcb3c89bd7216ddb18e297b8 to your computer and use it in GitHub Desktop.
Sublime text keymap to map shift+home and shift+end to highlight current line
[
{ "keys": ["ctrl+super+g"], "command": "find_all_under" },
{ "keys": ["super+f2"], "command": "find_all_under" },
{ "keys": ["super+alt+l"], "command": "split_selection_into_lines" },
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+b"], "command": "build" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["shift+home"], "command": "move_to", "args": { "to": "bol", "extend": true } },
{ "keys": ["shift+end"], "command": "move_to", "args": { "to": "eol", "extend": true } },
{ "keys": ["super+shift+home"], "command": "move_to", "args": { "to": "bol", "extend": false } },
{ "keys": ["super+shift+end"], "command": "move_to", "args": { "to": "eol", "extend": false } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment