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
It looks like it only sees two operators with =?
=
The text was updated successfully, but these errors were encountered:
Certain macros are currently ignored here:
@syntax_macros ~w(= == == === =~ .. ..// ! != !== &&) def completion(%_callable_module{name: name}, _env) when name in @syntax_macros do :skip end
This clause could be removed, or an exception could be made for Kernel.| like so:
Kernel.|
def completion(%_callable_module{name: name} = callable, %Env{} = env) when name in @syntax_macros do if String.ends_with?(env.prefix, "Kernel.") do do_completion(callable, env) else :skip end end
Sorry, something went wrong.
That makes a ton of sense.
@Moosieus PR for this?
Kernel.
Successfully merging a pull request may close this issue.
It looks like it only sees two operators with
=
?The text was updated successfully, but these errors were encountered: