elixir-lsp / coc-elixir

Elixir language server extension based on elixir-ls for coc.nvim
MIT License
168 stars 11 forks source link

Add end after opening do block #45

Closed aswinmohanme closed 3 years ago

aswinmohanme commented 3 years ago

There is a plugin that already does it tpope/vim-endwise but it is buggy and has conflicts withcoc-elixir. It would be really nice if coc-elixir could support this natively.

Also really great and awesome plugin. Works everywhere else like a charm 👍

amiralies commented 3 years ago

Hi, coc-elixir is a actually a think layer on top of elixir-ls and it tries to connect to elixir-ls smoothly, this kinda features are not likely to be implemented in coc-elixir (maybe we can have this as a snippet in elixir-ls itself). what about using custom snippets? I use coc-snippets with vim-snippets , there's do/end snippet.

aswinmohanme commented 3 years ago

Makes sense, I'll try that thanks.