Last active
April 4, 2022 10:31
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "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