gleam.vim 339 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: Gleam
  3. " Maintainer: Trilowy (https://github.com/trilowy)
  4. " Last Change: 2024 Oct 13
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal comments=://,:///,:////
  10. setlocal commentstring=//\ %s
  11. let b:undo_ftplugin = "setlocal comments< commentstring<"
  12. " vim: sw=2 sts=2 et