diff options
author | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-20 13:12:30 +0200 |
---|---|---|
committer | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-26 19:32:32 +0200 |
commit | fa07cc215d6c7e86e3b4b7a83d856c017a655933 (patch) | |
tree | 74956d62a3d6a88a7b9b0dae02e6794992d9edaa /runtime/doc/sign.txt | |
parent | e09f3baed8abc5fb821fb9b6226ad232d8e2f4c7 (diff) | |
download | rneovim-fa07cc215d6c7e86e3b4b7a83d856c017a655933.tar.gz rneovim-fa07cc215d6c7e86e3b4b7a83d856c017a655933.tar.bz2 rneovim-fa07cc215d6c7e86e3b4b7a83d856c017a655933.zip |
vim-patch:8.1.0717: there is no function for the ":sign jump" command
Problem: There is no function for the ":sign jump" command.
Solution: Add the sign_jump() function. (Yegappan Lakshmanan, closes vim/vim#3780)
https://github.com/vim/vim/commit/6b7b7190aa9e5c4f51bceaebf9275aa5097cfea1
Diffstat (limited to 'runtime/doc/sign.txt')
-rw-r--r-- | runtime/doc/sign.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt index cbc3a19399..cf7e01bcea 100644 --- a/runtime/doc/sign.txt +++ b/runtime/doc/sign.txt @@ -256,13 +256,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 @@ -309,6 +309,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}. |