Skip to content

Commit

Permalink
Trigger signature_help on comma (elixir-lsp#564)
Browse files Browse the repository at this point in the history
Fixes an issue where some tools are not properly triggered for signature
help. See ray-x/lsp_signature.nvim#38
  • Loading branch information
jared-mackey authored and vanjabucic committed Jul 5, 2021
1 parent d9ee8f3 commit c5b31e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule ElixirLS.LanguageServer.Providers.SignatureHelp do
alias ElixirLS.LanguageServer.SourceFile

def trigger_characters(), do: ["("]
def trigger_characters(), do: ["(", ","]

def signature(%SourceFile{} = source_file, line, character) do
response =
Expand Down

0 comments on commit c5b31e8

Please sign in to comment.