Poll regarding docstring highlighting for Erlang's vim syntax files

Hi everyone,

together with @hcs42 we are currently working on adding support for docstrings to the vim syntax file for Erlang → Update Erlang syntax for recent language changes by jchristgit · Pull Request #58 · vim-erlang/vim-erlang-runtime · GitHub

During the review, it was figured it might be better to poll the community on the following question: Should markdown be highlighted by default in Erlang docstrings? The remainder of the docstring will be highlighted as a comment (this is configurable), markdown elements will be highlighted the same way as in a regular markdown file. However, this 1. comes at a slight (barely noticeable for me) performance penalty to opening files and scrolling (more noticeable), and 2. assumes that people use markdown, which might be unexpected since other formats are supported, too.

Regardless of the outcome, this can be configured with one line in the vimrc, let g:erlang_use_markdown_for_docs = 0 | 1.

Elixir’s vim syntax files have this option too, and it’s disabled by default. Admittedly I didn’t know it was an option until I read the syntax file myself. This is why we think having it enabled by default might be useful.

Vote: Markdown highlighting in docs
  • Should be enabled by default (at a slight performance penalty)
  • Should be disabled by default
0 voters

Thank you for participating!

2 Likes

Thank you everyone for participating in the voting!

We merged the feature after updating the code according to the majority of the votes: Markdown highlight will not be enabled by default. The votes for the two options are quite close (10 votes versus 9 votes), which highlights that it’s not an easy decision either way.

If you work on Erlang 27+ code now, you might want to clone the vim-erlang-runtime repository and set the g:erlang_use_markdown_for_docs and g:erlang_docstring_default_highlight options according to your personal preference. See syntax/erlang.vim for more information. As usual, eventually the change will get into Vim itself too.

2 Likes