Mercurial > vim
annotate runtime/ftplugin/jsp.vim @ 32782:abf161ce0c77 v9.0.1707
patch 9.0.1707: Cannot wrap around in popup_filter_menu()
Commit: https://github.com/vim/vim/commit/badeedd913d9d6456ad8087911d024fd36800743
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Aug 13 19:25:28 2023 +0200
patch 9.0.1707: Cannot wrap around in popup_filter_menu()
Problem: Cannot wrap around in popup_filter_menu()
Solution: Allow to wrap around by default
Currently, it is not possible, to wrap around at the end of the list
using e.g. down (and go back to the top) or up at the beginning of the
list and go directly to the last item. This is not consistent behaviour
with e.g. how the pum-menu currently works, so let's just allow this.
Also adjust tests about it.
closes: #12689
closes: #12693
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 Aug 2023 19:30:04 +0200 |
parents | c968191a8557 |
children | 8ae680be2a51 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: jsp | |
28010 | 3 " |
4 " This runtime file is looking for a new maintainer. | |
5 " | |
6 " Former maintainer: Dan Sharp | |
2034 | 7 " Last Changed: 20 Jan 2009 |
7 | 8 |
9 if exists("b:did_ftplugin") | finish | endif | |
10 | |
11 " Make sure the continuation lines below do not cause problems in | |
12 " compatibility mode. | |
13 let s:save_cpo = &cpo | |
14 set cpo-=C | |
15 | |
16 " Define some defaults in case the included ftplugins don't set them. | |
17 let s:undo_ftplugin = "" | |
18 let s:browsefilter = "Java Files (*.java)\t*.java\n" . | |
15 | 19 \ "HTML Files (*.html, *.htm)\t*.html;*.htm\n" . |
7 | 20 \ "All Files (*.*)\t*.*\n" |
21 let s:match_words = "" | |
22 | |
23 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim | |
24 unlet b:did_ftplugin | |
25 | |
26 " Override our defaults if these were set by an included ftplugin. | |
27 if exists("b:undo_ftplugin") | |
28 let s:undo_ftplugin = b:undo_ftplugin | |
29 unlet b:undo_ftplugin | |
30 endif | |
31 if exists("b:browsefilter") | |
32 let s:browsefilter = b:browsefilter | |
33 unlet b:browsefilter | |
34 endif | |
35 if exists("b:match_words") | |
36 let s:match_words = b:match_words | |
37 unlet b:match_words | |
38 endif | |
39 | |
40 runtime! ftplugin/java.vim ftplugin/java_*.vim ftplugin/java/*.vim | |
41 let b:did_ftplugin = 1 | |
42 | |
43 " Combine the new set of values with those previously included. | |
44 if exists("b:undo_ftplugin") | |
45 let s:undo_ftplugin = b:undo_ftplugin . " | " . s:undo_ftplugin | |
46 endif | |
47 if exists ("b:browsefilter") | |
48 let s:browsefilter = b:browsefilter . s:browsefilter | |
49 endif | |
50 if exists("b:match_words") | |
551 | 51 let s:match_words = b:match_words . ',' . s:match_words |
7 | 52 endif |
53 | |
54 " Load the combined list of match_words for matchit.vim | |
55 if exists("loaded_matchit") | |
56 let b:match_words = s:match_words | |
57 endif | |
58 | |
59 " Change the :browse e filter to primarily show JSP-related files. | |
60 if has("gui_win32") | |
61 let b:browsefilter="JSP Files (*.jsp)\t*.jsp\n" . s:browsefilter | |
62 endif | |
63 | |
64 " Undo the stuff we changed. | |
65 let b:undo_ftplugin = "unlet! b:browsefilter b:match_words | " . s:undo_ftplugin | |
66 | |
67 " Restore the saved compatibility options. | |
68 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
69 unlet s:save_cpo |