xref: /vim-8.2.3635/runtime/ftplugin/dune.vim (revision 89a9c159)
1" Language:    Dune buildsystem
2" Maintainer:  Markus Mottl        <[email protected]>
3"              Anton Kochkov       <[email protected]>
4" URL:         https://github.com/ocaml/vim-ocaml
5" Last Change:
6"              2018 Nov 3 - Added commentstring (Markus Mottl)
7"              2017 Sep 6 - Initial version (Etienne Millon)
8
9if exists("b:did_ftplugin")
10  finish
11endif
12let b:did_ftplugin=1
13
14set lisp
15
16" Comment string
17setl commentstring=;\ %s
18setl comments=:;
19
20setl iskeyword+=#,?,.,/
21