Skip to content

Commit

Permalink
fix: add '#' as a trigger character
Browse files Browse the repository at this point in the history
  • Loading branch information
Feel-ix-343 committed Mar 3, 2024
1 parent 10184e4 commit 88dc5e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ impl LanguageServer for Backend {
)),
completion_provider: Some(CompletionOptions {
resolve_provider: Some(false),
trigger_characters: Some(vec!["[".into(), " ".into(), "(".into()]),
trigger_characters: Some(vec!["[".into(), " ".into(), "(".into(), "#".into()]),
work_done_progress_options: Default::default(),
all_commit_characters: None,
completion_item: None,
Expand Down

0 comments on commit 88dc5e6

Please sign in to comment.