Skip to content

Commit

Permalink
Use , as signature trigger char
Browse files Browse the repository at this point in the history
This is what other servers do.
  • Loading branch information
yyoncho committed Aug 1, 2020
1 parent 9c63a87 commit e518624
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
public class SignatureHelpHandler {

public static SignatureHelpOptions createOptions() {
return new SignatureHelpOptions(Arrays.asList("("));
return new SignatureHelpOptions(Arrays.asList("(", ","));
}

private static final int SEARCH_BOUND = 2000;
Expand Down

0 comments on commit e518624

Please sign in to comment.