mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-01 12:24:29 +00:00
Flip on typing config to be opt-in, better defaults
This commit is contained in:
parent
2a89e4a051
commit
557c467aa9
5 changed files with 31 additions and 26 deletions
|
|
@ -2745,9 +2745,9 @@
|
|||
{
|
||||
"title": "typing",
|
||||
"properties": {
|
||||
"rust-analyzer.typing.excludeChars": {
|
||||
"markdownDescription": "Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`.",
|
||||
"default": "|<",
|
||||
"rust-analyzer.typing.triggerChars": {
|
||||
"markdownDescription": "Specify the characters allowed to invoke special on typing triggers.\n- typing `=` after `let` tries to smartly add `;` if `=` is followed by an existing expression\n- typing `=` between two expressions adds `;` when in statement position\n- typing `=` to turn an assignment into an equality comparison removes `;` when in expression position\n- typing `.` in a chain method call auto-indents\n- typing `{` or `(` in front of an expression inserts a closing `}` or `)` after the expression\n- typing `{` in a use item adds a closing `}` in the right place\n- typing `>` to complete a return type `->` will insert a whitespace after it\n- typing `<` in a path or type position inserts a closing `>` after the path or type.",
|
||||
"default": "=.",
|
||||
"type": [
|
||||
"null",
|
||||
"string"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue