Merge pull request #18647 from Veykril/push-nsrrmmnzzoym
internal: Disable pipe on typing handler
This commit is contained in:
commit
91adfec2f0
3 changed files with 3 additions and 3 deletions
|
@ -305,7 +305,7 @@ config_data! {
|
|||
signatureInfo_documentation_enable: bool = true,
|
||||
|
||||
/// Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`.
|
||||
typing_excludeChars: Option<String> = Some('<'.to_string()),
|
||||
typing_excludeChars: Option<String> = Some("|<".to_owned()),
|
||||
|
||||
|
||||
/// Enables automatic discovery of projects using [`DiscoverWorkspaceConfig::command`].
|
||||
|
|
|
@ -992,7 +992,7 @@ Show full signature of the callable. Only shows parameters if disabled.
|
|||
--
|
||||
Show documentation.
|
||||
--
|
||||
[[rust-analyzer.typing.excludeChars]]rust-analyzer.typing.excludeChars (default: `"<"`)::
|
||||
[[rust-analyzer.typing.excludeChars]]rust-analyzer.typing.excludeChars (default: `"|<"`)::
|
||||
+
|
||||
--
|
||||
Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`.
|
||||
|
|
|
@ -2607,7 +2607,7 @@
|
|||
"properties": {
|
||||
"rust-analyzer.typing.excludeChars": {
|
||||
"markdownDescription": "Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`.",
|
||||
"default": "<",
|
||||
"default": "|<",
|
||||
"type": [
|
||||
"null",
|
||||
"string"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue