vim中的位置列表和快速修复列表有什么区别
以下是有关快速修复列表和位置列表的文档。但是我不确定到底有什么不同。下图显示了位置列表和快速修复列表中的相同内容。我何时在vimgrep和lvimgrep中使用一个或另一个。 In Vim the quickfix commands are used more generally to find a list of positions in files.For example, |:vimgrep| finds pattern matches. You can use the positions in a script with the |getqflist()| function. Thus you can do a lot more than the edit/compile/fix cycle! ... ... *location-list* *E776* …