adding rust configs

This commit is contained in:
dtomlinson@panaetius.co.uk
2019-11-21 01:16:04 +00:00
parent ca17c0b1d6
commit f072d619a6
5 changed files with 80 additions and 15 deletions

View File

@@ -1,12 +1,21 @@
[
{
"command": "anaconda_goto", "keys": ["alt+g"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_doc", "keys": ["alt+d"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
}
]
[
{
"command": "anaconda_goto", "keys": ["alt+g"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_doc", "keys": ["alt+d"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{ "keys": ["alt+p"], "command": "lsp_hover" },
{ "keys": ["alt+d"], "command": "lsp_show_diagnostics_panel" },
{ "keys": ["alt+g"], "command": "lsp_symbol_definition"},
{ "keys": ["alt+d"], "command": "lsp_hover" },
{ "keys": ["alt+r"], "command": "lsp_symbol_rename" },
{ "keys": ["alt+q"], "command": "next_result" },
{ "keys": ["alt+w"], "command": "prev_result" },
{ "keys": ["ctrl+alt+b"], "command": "lsp_format_document"},
{ "keys": ["ctrl+alt+'"], "command": "lsp_document_symbols"},
]