comparison runtime/doc/sign.txt @ 18744:b29d8a06e72c v8.1.2362

patch 8.1.2362: cannot place signs in a popup window Commit: https://github.com/vim/vim/commit/7257073043252c2e01c8e168e6842a1121797243 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 14:21:53 2019 +0100 patch 8.1.2362: cannot place signs in a popup window Problem: Cannot place signs in a popup window. (Maxim Kim) Solution: Use the group prefix "PopUp" to specify which signs should show up in a popup window. (closes #5277)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 14:30:05 +0100
parents 99586852c2db
children 82a28df1e2d5
comparison
equal deleted inserted replaced
18743:06e8fc69df42 18744:b29d8a06e72c
70 placed in the named group. The sign identifier is unique within a group. The 70 placed in the named group. The sign identifier is unique within a group. The
71 sign group allows Vim plugins to use unique signs without interfering with 71 sign group allows Vim plugins to use unique signs without interfering with
72 other plugins using signs. 72 other plugins using signs.
73 73
74 The group name "popupmenu" is used by popup windows where 'cursorline' is set. 74 The group name "popupmenu" is used by popup windows where 'cursorline' is set.
75
76 To place a sign in a popup window the group name must start with "PopUp".
77 Other signs will not show in a popup window. The group name "PopUpMenu" is
78 used by popup windows where 'cursorline' is set.
75 79
76 *sign-priority* 80 *sign-priority*
77 Each placed sign is assigned a priority value. When multiple signs are placed 81 Each placed sign is assigned a priority value. When multiple signs are placed
78 on the same line, the attributes of the sign with the highest priority is used 82 on the same line, the attributes of the sign with the highest priority is used
79 independent of the sign group. The default priority for a sign is 10. The 83 independent of the sign group. The default priority for a sign is 10. The