mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
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:
@@ -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++;
|
||||
|
Reference in New Issue
Block a user