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