Ramel Eshed wrote: > 1) Actually, there is a bug here which is not exactly what I've > described earlier. The issue is that :call setqflist([]), instead of > adding one more list after the last list, will clear the next list and > delete the ones after. For example: let's say I used :grep 4 times so > I have now 4 lists. Now, if I do :colder 3, the first list becomes the > current list. :call setqflist([]) will empty list 2, and delete lists > 3 and 4.
Looking into this again, this is intended behavior. The problem is that you can't easily see an overview of the error lists. I'll add the :chistory command for that. The help explains this: When ":colder" has been used and ":make" or ":grep" is used to add a new error list, one newer list is overwritten. This is especially useful if you are browsing with ":grep" |grep|. If you want to keep the more recent error lists, use ":cnewer 99" first. You can also use setqflist([], 'r') to clear one error list. -- You were lucky to have a LAKE! There were a hundred and sixty of us living in a small shoebox in the middle of the road. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
