diff options
Diffstat (limited to 'ftplugin/dune.vim')
-rw-r--r-- | ftplugin/dune.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ftplugin/dune.vim b/ftplugin/dune.vim index 970c9825..92c471f4 100644 --- a/ftplugin/dune.vim +++ b/ftplugin/dune.vim @@ -2,6 +2,14 @@ if has_key(g:polyglot_is_disabled, 'ocaml') finish endif +" Language: Dune buildsystem +" Maintainer: Markus Mottl <markus.mottl@gmail.com> +" Anton Kochkov <anton.kochkov@gmail.com> +" URL: https://github.com/ocaml/vim-ocaml +" Last Change: +" 2018 Nov 3 - Added commentstring (Markus Mottl) +" 2017 Sep 6 - Initial version (Etienne Millon) + if exists("b:did_ftplugin") finish endif @@ -12,3 +20,5 @@ set lisp " Comment string setl commentstring=;\ %s setl comments=:; + +setl iskeyword+=#,?,.,/ |