Mercurial > vim
annotate runtime/ftplugin/aspvbs.vim @ 34329:a059fc613d55 v9.1.0098
patch 9.1.0098: CompletionChanged not triggered when new leader added without matches
Commit: https://github.com/vim/vim/commit/0d3c0a66a39570cbc52b9536604c39e324b989b3
Author: glepnir <glephunter@gmail.com>
Date: Sun Feb 11 17:52:40 2024 +0100
patch 9.1.0098: CompletionChanged not triggered when new leader added without matches
Problem: CompletionChanged not triggered when new leader added causing
no matching item in the completion menu
Solution: When completion is active but no items matched still trigger
CompletChanged event
(glepnir)
closes: #13982
Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 11 Feb 2024 18:00:03 +0100 |
parents | 8ae680be2a51 |
children |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
2 " Language: aspvbs |
28010 | 3 " |
4 " This runtime file is looking for a new maintainer. | |
5 " | |
6 " Former maintainer: Dan Sharp | |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
7 " Last Change: 2009 Jan 20 |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
8 " 2024 Jan 14 by Vim Project (browsefilter) |
7 | 9 |
10 if exists("b:did_ftplugin") | finish | endif | |
11 | |
12 " Make sure the continuation lines below do not cause problems in | |
13 " compatibility mode. | |
14 let s:save_cpo = &cpo | |
15 set cpo-=C | |
16 | |
17 " Define some defaults in case the included ftplugins don't set them. | |
18 let s:undo_ftplugin = "" | |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
19 let s:browsefilter = "HTML Files (*.html, *.htm)\t*.htm*\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
20 if has("win32") |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
21 let s:browsefilter .= "All Files (*.*)\t*\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
22 else |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
23 let s:browsefilter .= "All Files (*)\t*\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
24 endif |
7 | 25 let s:match_words = "" |
26 | |
27 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim | |
28 let b:did_ftplugin = 1 | |
29 | |
30 " Override our defaults if these were set by an included ftplugin. | |
31 if exists("b:undo_ftplugin") | |
32 let s:undo_ftplugin = b:undo_ftplugin | |
33 endif | |
34 if exists("b:browsefilter") | |
35 let s:browsefilter = b:browsefilter | |
36 endif | |
37 if exists("b:match_words") | |
38 let s:match_words = b:match_words | |
39 endif | |
40 | |
41 " ASP: Active Server Pages (with Visual Basic Script) | |
42 " thanks to Gontran BAERTS | |
43 if exists("loaded_matchit") | |
44 let s:notend = '\%(\<end\s\+\)\@<!' | |
11 | 45 let b:match_ignorecase = 1 |
7 | 46 let b:match_words = |
11 | 47 \ s:notend . '\<if\>\%(.\{-}then\s\+\w\)\@!:\<elseif\>:^\s*\<else\>:\<end\s\+\<if\>,' . |
48 \ s:notend . '\<select\s\+case\>:\<case\>:\<case\s\+else\>:\<end\s\+select\>,' . | |
49 \ '^\s*\<sub\>:\<end\s\+sub\>,' . | |
50 \ '^\s*\<function\>:\<end\s\+function\>,' . | |
51 \ '\<class\>:\<end\s\+class\>,' . | |
52 \ '^\s*\<do\>:\<loop\>,' . | |
53 \ '^\s*\<for\>:\<next\>,' . | |
54 \ '\<while\>:\<wend\>,' . | |
7 | 55 \ s:match_words |
56 endif | |
57 | |
58 " Change the :browse e filter to primarily show ASP-related files. | |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
28010
diff
changeset
|
59 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
7 | 60 let b:browsefilter="ASP Files (*.asp)\t*.asp\n" . s:browsefilter |
61 endif | |
62 | |
11 | 63 let b:undo_ftplugin = "unlet! b:match_words b:match_ignorecase b:browsefilter | " . s:undo_ftplugin |
7 | 64 |
65 " Restore the saved compatibility options. | |
66 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
67 unlet s:save_cpo |