JakeBecker / vscode-elixir-ls

Elixir language support and debugger for VS Code, powered by ElixirLS.
388 stars 42 forks source link

Blocks & Codes Comments suggestion #162

Closed odyright closed 4 years ago

odyright commented 4 years ago

I'm not the author but ..i bring it here so it could help!

https://github.com/fr1zle/vscode-elixir/pull/146#issue-249507723

As using <%# some content %> as block comment doesn't really work well in .html.eex templates i changed them to the normal html block comment tags.

Comments before (wrong): <%# <%= form_for @conn, initiate_path(@conn, :create), [errors: @conn.assigns[:errors]], fn f -> %> %> Comments now (right): <!-- <%= form_for @conn, initiate_path(@conn, :create), [errors: @conn.assigns[:errors]], fn f -> %> -->

Commenting in .html.eex templates now works as it should for me.

from @fklement

alanvardy commented 4 years ago

Hello!

I am not a maintainer of this project but would like to let you know that this repository has been inactive since May 2019. There is a fork that is being actively developed by community members, and I recommend you switch over!

The GitHub repository is here: https://github.com/elixir-lsp/vscode-elixir-ls

And the Visual Studio Code extension is here: https://marketplace.visualstudio.com/items?itemName=elixir-lsp.elixir-ls

If you are having any issues or would like to open any pull requests, please try the new extension or clone the new repository first. You may find that the problem is already resolved 🙂

Thank you and happy Elixiring.

odyright commented 4 years ago

thank you!