Skip to content

Instantly share code, notes, and snippets.

@hsiafan
Created November 29, 2022 12:54
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 hsiafan/abb1d9867745cd578b7477a26b2c5662 to your computer and use it in GitHub Desktop.
Save hsiafan/abb1d9867745cd578b7477a26b2c5662 to your computer and use it in GitHub Desktop.
[
{ "keys": ["alt+f12"],
"command": "toggle_terminus_panel",
"cwd": "${file_path:${folder}}"
},
{ "keys": ["super+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["ctrl+g"], "command": "find_under_expand" },
{ "keys": ["ctrl+shift+g"], "command": "soft_undo" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+b"], "command": "goto_definition" },
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["super+1"], "command": "toggle_side_bar" },
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["super+shift+r"], "command": "show_panel", "args": {"panel": "find_in_files"} },
// Find Symbol References
{
"command": "lsp_symbol_references",
"keys": [
"alt+f12"
],
"context": [
{
"key": "lsp.session_with_capability",
"operator": "equal",
"operand": "referencesProvider"
},
]
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment