blob: bd30c7bb19d9b4a034ca39b9f0a3c42aa23c922b [file] [log] [blame]
Bram Moolenaar0e6adf82021-12-16 14:41:10 +00001" Vim filetype plugin file
2" Language: Microsoft Visual Studio Solution
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
4" Last Change: 2021 Dec 15
5
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal comments=:#
15setlocal commentstring=#\ %s
16
17let b:undo_ftplugin = "setl com< cms<"
18
19if 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"
26endif
27
28if (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"
32endif
33
34let &cpo = s:cpo_save
35unlet s:cpo_save
36
37" vim: nowrap sw=2 sts=2 ts=8 noet: