annotate runtime/indent/lisp.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 2198955f9e27
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
233
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
1 " Vim indent file
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
2 " Language: Lisp
29659
2198955f9e27 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3256
diff changeset
3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
2198955f9e27 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3256
diff changeset
4 " URL: http://sites.google.com/site/khorser/opensource/vim
3256
ba708ee8d69d Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 274
diff changeset
5 " Last Change: 2012 Jan 10
233
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
6
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
7 " Only load this indent file when no other was loaded.
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
8 if exists("b:did_indent")
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
9 finish
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
10 endif
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
11 let b:did_indent = 1
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
12
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 233
diff changeset
13 setlocal ai nosi
233
fca8a9b65afa updated for version 7.0065
vimboss
parents:
diff changeset
14
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 233
diff changeset
15 let b:undo_indent = "setl ai< si<"