Created
June 16, 2024 19:50
-
-
Save AlexMikhalev/435d918b620758d7fb7affdd5c142f43 to your computer and use it in GitHub Desktop.
Sublime Linux keymap for Mac users
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
[ | |
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
{ "keys": ["ctrl+k","ctrl+a"], "command": "select_all" }, | |
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["shift+right"], "command": "lsp_symbol_definition", | |
"args": {"side_by_side": false, "force_group": true, "fallback": false, "group": -1}, | |
"context": [ | |
{"key": "lsp.session_with_capability", "operand": "definitionProvider"}, | |
{"key": "auto_complete_visible", "operand": false} | |
]}, | |
{ "keys": ["shift+up"], "command": "goto_definition" }, | |
{ "keys": ["shift+left"], "command": "jump_back" }, | |
] |
Author
AlexMikhalev
commented
Jan 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment