Skip to content

Instantly share code, notes, and snippets.

@AlexMikhalev
Created June 16, 2024 19:50
Show Gist options
  • Save AlexMikhalev/435d918b620758d7fb7affdd5c142f43 to your computer and use it in GitHub Desktop.
Save AlexMikhalev/435d918b620758d7fb7affdd5c142f43 to your computer and use it in GitHub Desktop.
Sublime Linux keymap for Mac users
[
{ "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" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment