Use closing paren as a trigger character
This seems counter-intuitive based on the concept of "trigger character" but it provides a better function signature experience.
This commit is contained in:
parent
f605f6e70a
commit
5a9d471f98
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ pub fn server_capabilities() -> ServerCapabilities {
|
|||
trigger_characters: None,
|
||||
}),
|
||||
signature_help_provider: Some(SignatureHelpOptions {
|
||||
trigger_characters: Some(vec!["(".to_string(), ",".to_string()]),
|
||||
trigger_characters: Some(vec!["(".to_string(), ",".to_string(), ")".to_string()]),
|
||||
}),
|
||||
definition_provider: Some(true),
|
||||
type_definition_provider: None,
|
||||
|
|
Loading…
Add table
Reference in a new issue