-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
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
Errors are not shown #170
Comments
Can you simplify vimrc? |
I found the problem! The compiler locates the problem in the line 26. The file has 25 lines. I opened a defmodule Test
def hello(test) do
...
...
end # only one end If I add a new line at the end, it is shown. So I don't know where I should report the bug, here or should I go to elixir lang? Maybe other languages server do the same... or maybe not. Thank you for your time |
It should go to language server, in your case, elixir language server. |
As far as I know, python, rust, javascript/typescript language servers don't have this issue. |
I have the plugin working with https://github.com/JakeBecker/elixir-ls#features
The development of this language server for elixir is still very primitive but it has some functionalities working. The formatter and autocompletion currently work, however, the "Inline reporting of build warnings and errors" seems work but they are not shown in nvim.
So it receives the errors, but then they are not shown. What can I do? Do I need another plugin?
The text was updated successfully, but these errors were encountered: