Bram Moolenaar | 790c18b | 2019-07-04 17:22:06 +0200 | [diff] [blame] | 1 | " Language: Dune buildsystem |
| 2 | " Maintainer: Markus Mottl <markus.mottl@gmail.com> |
| 3 | " Anton Kochkov <anton.kochkov@gmail.com> |
Bram Moolenaar | 7e6a515 | 2021-01-02 16:39:53 +0100 | [diff] [blame] | 4 | " URL: https://github.com/ocaml/vim-ocaml |
Bram Moolenaar | 790c18b | 2019-07-04 17:22:06 +0200 | [diff] [blame] | 5 | " Last Change: |
| 6 | " 2018 Nov 3 - Added commentstring (Markus Mottl) |
| 7 | " 2017 Sep 6 - Initial version (Etienne Millon) |
| 8 | |
| 9 | if exists("b:did_ftplugin") |
| 10 | finish |
| 11 | endif |
| 12 | let b:did_ftplugin=1 |
| 13 | |
| 14 | set lisp |
| 15 | |
| 16 | " Comment string |
| 17 | setl commentstring=;\ %s |
| 18 | setl comments=:; |
| 19 | |
| 20 | setl iskeyword+=#,?,.,/ |