From e9051d965e32531e58f2dac02c92c33f8bb255b5 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 5 Dec 2021 22:22:09 -0500 Subject: [PATCH] vim-patch:partial 6304be625ce4 Update runtime files. https://github.com/vim/vim/commit/6304be625ce44dcfedc6735164d0b853578581c8 Remaining changes left out of 03d250eb4504d5168a754d0f3b7e9992337d60b4 --- runtime/doc/sign.txt | 11 ++++------- 1 file 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*