annotate runtime/ftplugin/solution.vim @ 29248:6a718a4e17ce

Added tag v8.2.5142 for changeset 5f314b2ed4940d2de3442f11ecb6fd03fc54fded
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Jun 2022 18:45:08 +0200
parents 3a63b1e4a6f4
children 8ae680be2a51
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>
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2021 Dec 15
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")
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 let b:browsefilter = "Microsoft Visual Studio Solution Files\t*.sln\n" ..
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 \ "All Files (*.*)\t*.*\n"
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 endif
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 let &cpo = s:cpo_save
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 unlet s:cpo_save
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36
3a63b1e4a6f4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 " vim: nowrap sw=2 sts=2 ts=8 noet: