feat(comment.kak): add OCaml and Coq cases

This commit is contained in:
antab 2020-12-18 08:08:56 +01:00
parent ce96c3f262
commit 6523f57d72

View File

@ -90,6 +90,11 @@ hook global BufSetOption filetype=markdown %{
set-option buffer comment_block_end '"' set-option buffer comment_block_end '"'
} }
hook global BufSetOption filetype=(ocaml|coq) %{
set-option buffer comment_block_begin '(* '
set-option buffer comment_block_end ' *)'
}
hook global BufSetOption filetype=perl %{ hook global BufSetOption filetype=perl %{
set-option buffer comment_block_begin '#[' set-option buffer comment_block_begin '#['
set-option buffer comment_block_end ']' set-option buffer comment_block_end ']'