Disable pipe on typing handler

This commit is contained in:
Lukas Wirth 2024-12-09 15:52:04 +01:00
parent 1c3043bc8c
commit f021ec3b96
3 changed files with 3 additions and 3 deletions

View file

@ -309,7 +309,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`].