karel.vim 396 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: KAREL
  3. " Last Change: 2024-11-18
  4. " Maintainer: Kirill Morozov <kirill@robotix.pro>
  5. " Credits: Patrick Meiser-Knosowski for the initial implementation.
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. setlocal comments=:--
  11. setlocal commentstring=--\ %s
  12. setlocal suffixesadd+=.kl,.KL
  13. let b:undo_ftplugin = "setlocal com< cms< sua<"