Skip to content

Commit

Permalink
Insert right paren after cursor when completing method calls starkwar…
Browse files Browse the repository at this point in the history
  • Loading branch information
PavitraAgarwal21 committed Jul 4, 2024
1 parent 53f7a0d commit aa2cb6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ fn completion_for_method(

let completion = CompletionItem {
label: format!("{}()", name),
insert_text: Some(format!("{}(", name)),
insert_text: Some(format!("{}()", name)),
detail: Some(detail),
kind: Some(CompletionItemKind::METHOD),
additional_text_edits: Some(additional_text_edits),
Expand Down

0 comments on commit aa2cb6b

Please sign in to comment.