dune.vim 673 B

12345678910111213141516171819202122232425
  1. " Language: Dune buildsystem
  2. " Maintainer: Markus Mottl <markus.mottl@gmail.com>
  3. " Anton Kochkov <anton.kochkov@gmail.com>
  4. " URL: https://github.com/ocaml/vim-ocaml
  5. " Last Change:
  6. " 2023 Aug 28 - Added undo_ftplugin (Vim Project)
  7. " 2018 Nov 03 - Added commentstring (Markus Mottl)
  8. " 2017 Sep 06 - Initial version (Etienne Millon)
  9. " 2024 Nov 09 - use setl instead of :set
  10. if exists("b:did_ftplugin")
  11. finish
  12. endif
  13. let b:did_ftplugin=1
  14. setl lisp
  15. " Comment string
  16. setl commentstring=;\ %s
  17. setl comments=:;
  18. setl iskeyword+=#,?,.,/
  19. let b:undo_ftplugin = "setl lisp< cms< com< isk<"