We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def
I see the handle_call autocomplete option when I have the following code snippet:
handle_call
defmodule TestVscodeAutocomplete do use GenServer handle_call end
However, I when I autocomplete handle_call by hitting enter, I get:
defmodule TestVscodeAutocomplete do use GenServer handle_call(request, from, state) do end end
with the extra space before the function name and lack of the def keyword.
When I autocomplete with the def keyword (i.e. from def handle_call), I get:
def handle_call
defmodule TestVscodeAutocomplete do use GenServer def def handle_call(request, from, state) do end end
The same problem also exists for handle_info and handle_call.
handle_info
Please let me know whatever other information you would like from me. Thanks!
The text was updated successfully, but these errors were encountered:
Actually, this seems to be from ElixirSense since changing to Alchemy does not provide the same auto-complete options. Sorry for the confusion.
Sorry, something went wrong.
No branches or pull requests
I see the
handle_call
autocomplete option when I have the following code snippet:However, I when I autocomplete
handle_call
by hitting enter, I get:with the extra space before the function name and lack of the
def
keyword.When I autocomplete with the
def
keyword (i.e. fromdef handle_call
), I get:The same problem also exists for
handle_info
andhandle_call
.Please let me know whatever other information you would like from me. Thanks!
The text was updated successfully, but these errors were encountered: