blob: 19ec392ec55c16ebdc2aa5b0b6a321ce922f8361 [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>
Doug Kearns93197fd2024-01-14 20:59:02 +01004" Last Change: 2024 Jan 14
Bram Moolenaar0e6adf82021-12-16 14:41:10 +00005
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")
Doug Kearns93197fd2024-01-14 20:59:02 +010029 let b:browsefilter = "Microsoft Visual Studio Solution Files(*.sln)\t*.sln\n"
30 if has("win32")
31 let b:browsefilter ..= "All Files (*.*)\t*\n"
32 else
33 let b:browsefilter ..= "All Files (*)\t*\n"
34 endif
Bram Moolenaar0e6adf82021-12-16 14:41:10 +000035 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
36endif
37
38let &cpo = s:cpo_save
39unlet s:cpo_save
40
41" vim: nowrap sw=2 sts=2 ts=8 noet: