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