From 3ee55edd2e27dd66c3bf8c319929beb0a6426bb3 Mon Sep 17 00:00:00 2001 From: Andrej Zieger Date: Wed, 15 May 2019 22:02:10 +0200 Subject: vim-patch:8.1.0644: finding next sign ID is inefficient Problem: Finding next sign ID is inefficient. Solution: Add next_sign_id. (Yegappan Lakshmanan, closes vim/vim#3717) https://github.com/vim/vim/commit/6436cd83f90a0efc326798792e49e8ff96a43dce --- runtime/doc/eval.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 21846d4cbb..028a4e9b7a 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -7428,10 +7428,10 @@ sign_getplaced([{expr} [, {dict}]]) *sign_getplaced()* lnum select signs placed in this line. For the use of {lnum}, see |line()|. If {group} is '*', then signs in all the groups including the - global group are returned. If {group} is not supplied, then - only signs in the global group are returned. If no arguments - are supplied, then signs in the global group placed in all the - buffers are returned. + global group are returned. If {group} is not supplied or is an + empty string, then only signs in the global group are + returned. If no arguments are supplied, then signs in the + global group placed in all the buffers are returned. Each list item in the returned value is a dictionary with the following entries: -- cgit