comparison runtime/doc/sign.txt @ 15418:51b3c36b0523 v8.1.0717

patch 8.1.0717: there is no function for the ":sign jump" command commit https://github.com/vim/vim/commit/6b7b7190aa9e5c4f51bceaebf9275aa5097cfea1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 11 13:42:41 2019 +0100 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 https://github.com/vim/vim/issues/3780)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Jan 2019 13:45:06 +0100
parents 0d76dd701e49
children f0f06837a699
comparison
equal deleted inserted replaced
15417:50a5ad000845 15418:51b3c36b0523
261 :sign unplace {id} group=* 261 :sign unplace {id} group=*
262 Remove the previously placed sign {id} in all the groups from 262 Remove the previously placed sign {id} in all the groups from
263 all the files it appears in. 263 all the files it appears in.
264 264
265 :sign unplace * 265 :sign unplace *
266 Remove placed signs in the global group from all the files. 266 Remove all placed signs in the global group from all the files.
267 267
268 :sign unplace * group={group} 268 :sign unplace * group={group}
269 Remove placed signs in group {group} from all the files. 269 Remove all placed signs in group {group} from all the files.
270 270
271 :sign unplace * group=* 271 :sign unplace * group=*
272 Remove placed signs in all the groups from all the files. 272 Remove all placed signs in all the groups from all the files.
273 273
274 :sign unplace 274 :sign unplace
275 Remove a placed sign at the cursor position. If multiple signs 275 Remove a placed sign at the cursor position. If multiple signs
276 are placed in the line, then only one is removed. 276 are placed in the line, then only one is removed.
277 277
314 :sign place group=* 314 :sign place group=*
315 List placed signs in all sign groups in all files. 315 List placed signs in all sign groups in all files.
316 316
317 317
318 JUMPING TO A SIGN *:sign-jump* *E157* 318 JUMPING TO A SIGN *:sign-jump* *E157*
319
320 See |sign_jump()| for the equivalent Vim script function.
319 321
320 :sign jump {id} file={fname} 322 :sign jump {id} file={fname}
321 Open the file {fname} or jump to the window that contains 323 Open the file {fname} or jump to the window that contains
322 {fname} and position the cursor at sign {id}. 324 {fname} and position the cursor at sign {id}.
323 See remark above about {fname} |:sign-fname|. 325 See remark above about {fname} |:sign-fname|.