blob: f3d1ab8c1cb013f9958a23e6e72af68af71e7863 [file] [log] [blame]
mtvare6616219f2025-01-07 20:31:27 +01001" Vim filetype plugin file
2" Language: Slang
3" Maintainer: Austin Shijo <epestr@proton.me>
4" Last Change: 2025 Jan 05
5
6" Only do this when not done yet for this buffer
7if exists("b:did_ftplugin")
8 finish
9endif
10
11" Don't load another plugin for this buffer
12let b:did_ftplugin = 1
13
14" Using line continuation here.
15let s:cpo_save = &cpo
16set cpo-=C
17
18let b:undo_ftplugin = "setl fo< com< cms< inc<"
19
20" Set 'formatoptions' to break comment lines but not other lines,
21" and insert the comment leader when hitting <CR> or using "o".
22setlocal fo-=t fo+=croql
23
24" Set comment string (Slang uses C-style comments)
25setlocal commentstring=//\ %s
26
27" Set 'comments' to format dashed lists in comments
28setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
29
30" When the matchit plugin is loaded, this makes the % command skip parens and
31" braces in comments properly, and adds support for shader-specific keywords
32if exists("loaded_matchit")
33 " Add common shader control structures
34 let b:match_words = '{\|^\s*\<\(if\|for\|while\|switch\|struct\|class\)\>:}\|^\s*\<break\>,' ..
35 \ '^\s*#\s*if\(\|def\|ndef\)\>:^\s*#\s*elif\>:^\s*#\s*else\>:^\s*#\s*endif\>,' ..
36 \ '\[:\]'
37 let b:match_skip = 's:comment\|string\|character\|special'
38 let b:match_ignorecase = 0
39 let b:undo_ftplugin ..= " | unlet! b:match_skip b:match_words b:match_ignorecase"
40endif
41
42" Win32 and GTK can filter files in the browse dialog
43if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
44 let b:browsefilter = "Slang Source Files (*.slang)\t*.slang\n"
45 if has("win32")
46 let b:browsefilter ..= "All Files (*.*)\t*\n"
47 else
48 let b:browsefilter ..= "All Files (*)\t*\n"
49 endif
50 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
51endif
52
53let &cpo = s:cpo_save
54unlet s:cpo_save