1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-07-07 09:16:26 +03:00

erlang: Fix the comment_line configuration

Erlang comments start with `%`. This is correctly highlighted
but the comment-line/comment-block commands don't work correctly.
This commit is contained in:
Daniel Gorin 2024-06-27 13:10:21 +01:00
parent 80fcfebca8
commit 8ca7b5815a

View File

@ -75,7 +75,7 @@ hook global BufSetOption filetype=(html|xml) %{
set-option buffer comment_block_end '-->'
}
hook global BufSetOption filetype=(latex|mercury) %{
hook global BufSetOption filetype=(erlang|latex|mercury) %{
set-option buffer comment_line '%'
}