annotate runtime/ftplugin/solution.vim @ 29816:bbe62ea78aac v9.0.0247

patch 9.0.0247: cannot add padding to virtual text without highlight Commit: https://github.com/vim/vim/commit/f396ce83eebf6c61596184231d39ce4d41eeac04 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 23 18:39:37 2022 +0100 patch 9.0.0247: cannot add padding to virtual text without highlight Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue https://github.com/vim/vim/issues/10906)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Aug 2022 19:45:05 +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: