-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put the context menu into a separate child menu
- Loading branch information
Showing
1 changed file
with
41 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
[ | ||
{ "caption": "-", "id": "lsp" }, | ||
{ | ||
"command": "lsp_symbol_references", | ||
"caption": "Find Symbol References" | ||
}, | ||
{ | ||
"command": "lsp_symbol_definition", | ||
"caption": "Go To Symbol Definition" | ||
}, | ||
{ | ||
"command": "lsp_symbol_type_definition", | ||
"caption": "Go To Symbol Type Definition" | ||
}, | ||
{ | ||
"command": "lsp_symbol_declaration", | ||
"caption": "Go To Symbol Declaration" | ||
}, | ||
{ | ||
"command": "lsp_symbol_implementation", | ||
"caption": "Go To Symbol Implementation" | ||
}, | ||
{ | ||
"command": "lsp_symbol_rename", | ||
"caption": "Rename Symbol" | ||
}, | ||
{ | ||
"command": "lsp_code_actions", | ||
"caption": "Code Actions" | ||
}, | ||
{ | ||
"command": "lsp_format_document", | ||
"caption": "Format Document" | ||
}, | ||
{ | ||
"command": "lsp_format_document_range", | ||
"caption": "Format Selection" | ||
}, | ||
{ "caption": "-", "id": "lsp_end"} | ||
"caption": "LSP", | ||
"children": | ||
[ | ||
{ | ||
"command": "lsp_symbol_references", | ||
"caption": "Find Symbol References" | ||
}, | ||
{ | ||
"command": "lsp_symbol_definition", | ||
"caption": "Go To Symbol Definition" | ||
}, | ||
{ | ||
"command": "lsp_symbol_type_definition", | ||
"caption": "Go To Symbol Type Definition" | ||
}, | ||
{ | ||
"command": "lsp_symbol_declaration", | ||
"caption": "Go To Symbol Declaration" | ||
}, | ||
{ | ||
"command": "lsp_symbol_implementation", | ||
"caption": "Go To Symbol Implementation" | ||
}, | ||
{ | ||
"command": "lsp_symbol_rename", | ||
"caption": "Rename Symbol" | ||
}, | ||
{ | ||
"command": "lsp_code_actions", | ||
"caption": "Code Actions" | ||
}, | ||
{ | ||
"command": "lsp_format_document", | ||
"caption": "Format Document" | ||
}, | ||
{ | ||
"command": "lsp_format_document_range", | ||
"caption": "Format Selection" | ||
} | ||
] | ||
} | ||
] |