mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
Change default enhanced typing behavior from using type to using keybindings.
This commit is contained in:
parent
23ef22dd48
commit
58c007674b
1 changed files with 6 additions and 1 deletions
|
@ -141,6 +141,11 @@
|
|||
"command": "rust-analyzer.run",
|
||||
"key": "ctrl+r",
|
||||
"when": "editorTextFocus && editorLangId == rust"
|
||||
},
|
||||
{
|
||||
"command": "rust-analyzer.onEnter",
|
||||
"key": "enter",
|
||||
"when": "editorTextFocus && editorLangId == rust"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
|
@ -164,7 +169,7 @@
|
|||
},
|
||||
"rust-analyzer.enableEnhancedTyping": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"default": false,
|
||||
"description": "Enables enhanced typing. NOTE: If using a VIM extension, you should set this to false"
|
||||
},
|
||||
"rust-analyzer.raLspServerPath": {
|
||||
|
|
Loading…
Reference in a new issue