diff options
author | James McCoy <jamessan@jamessan.com> | 2021-12-05 22:22:09 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-12-08 21:47:59 -0500 |
commit | e9051d965e32531e58f2dac02c92c33f8bb255b5 (patch) | |
tree | ee8dc0446331fc200c20aff409ed746359ca26ed | |
parent | 5fda23c307404a9d7d0e4d7b592df503ed1cb110 (diff) | |
download | rneovim-e9051d965e32531e58f2dac02c92c33f8bb255b5.tar.gz rneovim-e9051d965e32531e58f2dac02c92c33f8bb255b5.tar.bz2 rneovim-e9051d965e32531e58f2dac02c92c33f8bb255b5.zip |
vim-patch:partial 6304be625ce4
Update runtime files.
https://github.com/vim/vim/commit/6304be625ce44dcfedc6735164d0b853578581c8
Remaining changes left out of 03d250eb4504d5168a754d0f3b7e9992337d60b4
-rw-r--r-- | runtime/doc/sign.txt | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt index 641e193b5e..68165f3d3d 100644 --- a/runtime/doc/sign.txt +++ b/runtime/doc/sign.txt @@ -133,6 +133,10 @@ See |sign_define()| for the equivalent Vim script function. texthl={group} Highlighting group used for the text item. + culhl={group} + Highlighting group used for the text item when the cursor is + on the same line as the sign and 'cursorline' is enabled. + Example: > :sign define MySign text=>> texthl=Search linehl=DiffText < @@ -158,13 +162,6 @@ See |sign_getdefined()| for the equivalent Vim script function. :sign list {name} Lists one defined sign and its attributes. - culhl={group} - Highlighting group used for the text item when the cursor is - on the same line as the sign and 'cursorline' is enabled. - - Example: > - :sign define MySign text=>> texthl=Search linehl=DiffText -< PLACING SIGNS *:sign-place* *E158* |