annotate runtime/ftplugin/solution.vim @ 34672:267f245904a9

Added tag v9.1.0217 for changeset df52075b12cd00ca5122b3ea990e2b5b2361eea3
author Christian Brabandt <cb@256bit.org>
date Thu, 28 Mar 2024 10:30:05 +0100
parents 8ae680be2a51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26591
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Microsoft Visual Studio Solution
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
4 " Last Change: 2024 Jan 14
26591
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_ftplugin")
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_ftplugin = 1
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let s:cpo_save = &cpo
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 set cpo&vim
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 setlocal comments=:#
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 setlocal commentstring=#\ %s
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 let b:undo_ftplugin = "setl com< cms<"
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 if exists("loaded_matchit") && !exists("b:match_words")
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 let b:match_words =
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 \ '\<Project\>:\<EndProject\>,' ..
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 \ '\<ProjectSection\>:\<EndProjectSection\>,' ..
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 \ '\<Global\>:\<EndGlobal\>,' ..
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 \ '\<GlobalSection\>:\<EndGlobalSection\>'
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 let b:undo_ftplugin ..= " | unlet! b:match_words"
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 endif
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
29 let b:browsefilter = "Microsoft Visual Studio Solution Files(*.sln)\t*.sln\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
30 if has("win32")
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
31 let b:browsefilter ..= "All Files (*.*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
32 else
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
33 let b:browsefilter ..= "All Files (*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 26591
diff changeset
34 endif
26591
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 endif
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 let &cpo = s:cpo_save
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 unlet s:cpo_save
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 " vim: nowrap sw=2 sts=2 ts=8 noet: