0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)

This commit is contained in:
Bram Moolenaar
2010-08-09 22:14:48 +02:00
parent 314f11d44c
commit bc226b6ded
4 changed files with 8 additions and 6 deletions

View File

@@ -911,7 +911,8 @@ do_tag(tag, type, count, forceit, verbose)
dict_add_nr_str(dict, "pattern", 0L, cmd);
}
set_errorlist(curwin, list, ' ');
vim_snprintf(IObuff, IOSIZE, "ltag %s", tag);
set_errorlist(curwin, list, ' ', IObuff);
list_free(list, TRUE);