From 162b71479bd4dcdb3a2ef9198a1444f6f99e6843 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 21 Dec 2018 15:17:36 +0100 Subject: patch 8.1.0614: placing signs can be complicated Problem: Placing signs can be complicated. Solution: Add functions for defining and placing signs. Introduce a group name to avoid different plugins using the same signs. (Yegappan Lakshmanan, closes #3652) --- src/workshop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/workshop.c') diff --git a/src/workshop.c b/src/workshop.c index 7b09e33ae..3de4df1f8 100644 --- a/src/workshop.c +++ b/src/workshop.c @@ -491,7 +491,7 @@ workshop_get_mark_lineno( lineno = 0; buf = buflist_findname((char_u *)filename); if (buf != NULL) - lineno = buf_findsign(buf, markId); + lineno = buf_findsign(buf, markId, NULL); return lineno; } -- cgit v1.2.1