Is it possible to grep the quickfix window in Vim?

后端 未结 4 1450
旧时难觅i
旧时难觅i 2020-12-30 08:11

Let’s say I use the ag.vim plugin to search for the string disabled through multiple files. It returns me some results in the quickfix window:

1          


        
4条回答
  •  自闭症患者
    2020-12-30 09:13

    New official vim plugin cfilter

    Since 21.8.2018 (patch: 8.1.0311) the plugin cfilter is distributed with vim in $VIMRUNTIME. It is documented under :h cfilter-plugin.

    Load plugin cfilter when needed or load it always in your vimrc

    :packadd cfilter
    

    Filter quickfix list with

    :Cfilter DPUST
    

提交回复
热议问题