solution.vim (1059B)
1 " Vim filetype plugin file 2 " Language: Microsoft Visual Studio Solution 3 " Maintainer: Doug Kearns <dougkearns@gmail.com> 4 " Last Change: 2024 Jan 14 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(*.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 35 let b:undo_ftplugin ..= " | unlet! b:browsefilter" 36 endif 37 38 let &cpo = s:cpo_save 39 unlet s:cpo_save 40 41 " vim: nowrap sw=2 sts=2 ts=8 noet: