summaryrefslogtreecommitdiffstats
path: root/runtime/doc/sign.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-11 13:42:41 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-11 13:42:41 +0100
commit6b7b7190aa9e5c4f51bceaebf9275aa5097cfea1 (patch)
treeb088f8b853ef755e35cb1336b41a660735b4124f /runtime/doc/sign.txt
parentcee9bc2e3dc5c16a9d2a8d0e23aa0d5fdefa3a4a (diff)
patch 8.1.0717: there is no function for the ":sign jump" commandv8.1.0717
Problem: There is no function for the ":sign jump" command. Solution: Add the sign_jump() function. (Yegappan Lakshmanan, closes #3780)
Diffstat (limited to 'runtime/doc/sign.txt')
-rw-r--r--runtime/doc/sign.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt
index 6eb11a052d..7b33a2da32 100644
--- a/runtime/doc/sign.txt
+++ b/runtime/doc/sign.txt
@@ -263,13 +263,13 @@ See |sign_unplace()| for the equivalent Vim script function.
all the files it appears in.
:sign unplace *
- Remove placed signs in the global group from all the files.
+ Remove all placed signs in the global group from all the files.
:sign unplace * group={group}
- Remove placed signs in group {group} from all the files.
+ Remove all placed signs in group {group} from all the files.
:sign unplace * group=*
- Remove placed signs in all the groups from all the files.
+ Remove all placed signs in all the groups from all the files.
:sign unplace
Remove a placed sign at the cursor position. If multiple signs
@@ -317,6 +317,8 @@ See |sign_getplaced()| for the equivalent Vim script function.
JUMPING TO A SIGN *:sign-jump* *E157*
+See |sign_jump()| for the equivalent Vim script function.
+
:sign jump {id} file={fname}
Open the file {fname} or jump to the window that contains
{fname} and position the cursor at sign {id}.