vim-patch:8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'

Problem:    Sometimes the quickfix title is incorrectly prefixed with ':'.
Solution:   Prepend the colon in another way. (Yegappan Lakshmanan)

8b62e31003
This commit is contained in:
Marco Hinz
2019-04-08 17:00:11 +02:00
parent 446bfdd49f
commit daa82cbf69
3 changed files with 117 additions and 8 deletions

View File

@@ -14892,7 +14892,7 @@ static void set_qf_ll_list(win_T *wp, typval_T *args, typval_T *rettv)
skip_args:
if (!title) {
title = (wp ? "setloclist()" : "setqflist()");
title = (wp ? ":setloclist()" : ":setqflist()");
}
recursive++;