summaryrefslogtreecommitdiffstats
path: root/runtime/doc/sign.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-27 10:57:26 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-27 10:57:26 +0000
commit6304be625ce44dcfedc6735164d0b853578581c8 (patch)
treedb8bb5f50af170304917f08bbc78236cfe354bed /runtime/doc/sign.txt
parent7824fc80f675b8098e6483ce082e287aad14b6da (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/sign.txt')
-rw-r--r--runtime/doc/sign.txt11
1 files changed, 4 insertions, 7 deletions
diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt
index 96658e544d..489f3d8b52 100644
--- a/runtime/doc/sign.txt
+++ b/runtime/doc/sign.txt
@@ -148,6 +148,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
<
@@ -173,13 +177,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*