mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
vim-patch:9.1.0538: not possible to assign priority when defining a sign (#29592)
Problem: not possible to assign priority when defining a sign
(Mathias Fußenegger)
Solution: Add the priority argument for the :sign-define ex command and
the sign_define() function (LemonBoy)
Use the specified value instead of the default one (SIGN_DEF_PRIO) when
no priority is explicitly specified in sign_place or :sign place.
fixes: vim/vim#8334
closes: vim/vim#15124
b975ddfdf9
Co-authored-by: LemonBoy <thatlemon@gmail.com>
This commit is contained in:
4
runtime/lua/vim/_meta/vimfn.lua
generated
4
runtime/lua/vim/_meta/vimfn.lua
generated
@ -8477,6 +8477,7 @@ function vim.fn.sign_define(list) end
|
||||
--- linehl highlight group used for the whole line the
|
||||
--- sign is placed in; not present if not set.
|
||||
--- name name of the sign
|
||||
--- priority default priority value of the sign
|
||||
--- numhl highlight group used for the line number where
|
||||
--- the sign is placed; not present if not set.
|
||||
--- text text that is displayed when there is no icon
|
||||
@ -8668,7 +8669,8 @@ function vim.fn.sign_place(id, group, name, buf, dict) end
|
||||
--- priority Priority of the sign. When multiple signs are
|
||||
--- placed on a line, the sign with the highest
|
||||
--- priority is used. If not specified, the
|
||||
--- default value of 10 is used. See
|
||||
--- default value of 10 is used, unless specified
|
||||
--- otherwise by the sign definition. See
|
||||
--- |sign-priority| for more information.
|
||||
---
|
||||
--- If {id} refers to an existing sign, then the existing sign is
|
||||
|
Reference in New Issue
Block a user