rasi.vim 469 B

1234567891011121314151617181920212223242526
  1. " Vim filetype plugin file
  2. " Language: RASI
  3. " Maintainer: Pierrick Guillaume <pierguill@gmail.com>
  4. " Last Change: 2024 May 21
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. let s:cpo_save = &cpo
  10. set cpo&vim
  11. let b:undo_ftplugin = "setl com< cms< isk< inc<"
  12. setlocal comments=s1:/*,mb:*,ex:*/
  13. setlocal commentstring=//\ %s
  14. setlocal iskeyword+=-
  15. let &l:include = '^\s*@import\s\+\%(url(\)\='
  16. let &cpo = s:cpo_save
  17. unlet s:cpo_save
  18. " vim: ts=8