Skip to content

Commit f6fda31

Browse files
fix(completions): remove , as trigger char (#358)
1 parent b6ba701 commit f6fda31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/pgt_lsp/src/capabilities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub(crate) fn server_capabilities(capabilities: &ClientCapabilities) -> ServerCa
3737
// The request is used to get more information about a simple CompletionItem.
3838
resolve_provider: None,
3939

40-
trigger_characters: Some(vec![".".to_owned(), ",".to_owned(), " ".to_owned()]),
40+
trigger_characters: Some(vec![".".to_owned(), " ".to_owned()]),
4141

4242
// No character will lead to automatically inserting the selected completion-item
4343
all_commit_characters: None,

0 commit comments

Comments
 (0)