26591
|
1 " Vim filetype plugin file
|
|
2 " Language: Microsoft Visual Studio Solution
|
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
4 " Last Change: 2021 Dec 15
|
|
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 setlocal comments=:#
|
|
15 setlocal commentstring=#\ %s
|
|
16
|
|
17 let b:undo_ftplugin = "setl com< cms<"
|
|
18
|
|
19 if exists("loaded_matchit") && !exists("b:match_words")
|
|
20 let b:match_words =
|
|
21 \ '\<Project\>:\<EndProject\>,' ..
|
|
22 \ '\<ProjectSection\>:\<EndProjectSection\>,' ..
|
|
23 \ '\<Global\>:\<EndGlobal\>,' ..
|
|
24 \ '\<GlobalSection\>:\<EndGlobalSection\>'
|
|
25 let b:undo_ftplugin ..= " | unlet! b:match_words"
|
|
26 endif
|
|
27
|
|
28 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
|
29 let b:browsefilter = "Microsoft Visual Studio Solution Files\t*.sln\n" ..
|
|
30 \ "All Files (*.*)\t*.*\n"
|
|
31 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
|
|
32 endif
|
|
33
|
|
34 let &cpo = s:cpo_save
|
|
35 unlet s:cpo_save
|
|
36
|
|
37 " vim: nowrap sw=2 sts=2 ts=8 noet:
|