internal: Make exclude characters for typing assists configurable, default to None

Signed-off-by: Tarek <tareknaser360@gmail.com>
This commit is contained in:
Tarek 2024-11-17 15:25:23 +02:00
parent e6276c8b64
commit d6b701e251
5 changed files with 37 additions and 2 deletions

View file

@ -2612,6 +2612,19 @@
}
}
},
{
"title": "typing",
"properties": {
"rust-analyzer.typing.excludeChars": {
"markdownDescription": "Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`. Setting this to a string will disable typing assists for the specified characters.",
"default": null,
"type": [
"null",
"string"
]
}
}
},
{
"title": "workspace",
"properties": {