When we use cscope to go to definition of a symbol in vim, lots of candidates may be shown in result window. I'd like to perform searching within the window to find what I need quickly. But search function (/) doesn't seem to work in result window, only a few keys are available, j,k,gg,G, etc.
当我们在vim中使用cscope来定义一个符号时,许多候选项可能会显示在结果窗口中。我想在窗口内进行搜索,以便快速找到我需要的东西。但是搜索功能(/)在结果窗口中似乎没有作用,只有几个键可用,j、k、gg、G等。
Is there anyway to search in cscope result window? Or can anyone share some experiences with how to work more efficiently in such a situation.
在cscope结果窗口中是否有搜索?或者谁能分享一些在这种情况下如何更有效地工作的经验。
Thanks.
谢谢。
1 个解决方案
#1
2
You can use the following:
你可以使用以下方法:
" Filter the quickfix list
function! FilterQFList(type, action, pattern)
" get current quickfix list
let s:curList = getqflist()
let s:newList = []
for item in s:curList
if a:type == 0 " filter on file names
let s:cmpPat = bufname(item.bufnr)
elseif a:type == 1 " filter by line content
let s:cmpPat = item.text . item.pattern
endif
if item.valid
if a:action < 0
" Keep only nonmatching lines
if s:cmpPat !~ a:pattern
let s:newList += [item]
endif
else
" Keep only matching lines
if s:cmpPat =~ a:pattern
let s:newList += [item]
endif
endif
endif
endfor
call setqflist(s:newList)
endfunction
Then define four mappings (replace ø with something that fits for you, mine start with ð which I think might be unavailable on your keyboard) that map respectively to:
然后定义四个映射(ø替换为适合你的东西,我开始ð我认为可能无法在你的键盘),分别映射到:
nnoremap ø :call FilterQFList(0, -1, inputdialog('Remove file names matching:', ''))<CR>
nnoremap ø :call FilterQFList(0, 1, inputdialog('Keep only file names matching:', ''))<CR>
nnoremap ø :call FilterQFList(1, -1, inputdialog('Remove all lines matching:', ''))<CR>
nnoremap ø :call FilterQFList(1, 1, inputdialog('Keep only lines matching:', ''))<CR>
This way you can filter your quickfix list with any pattern (you have the power of vim reg.exps). Use :cnewer
and :colder
to jump through previous quickfix lists.
通过这种方式,您可以使用任何模式过滤您的quickfix列表(您拥有vim reg.exp的功能)。使用:cnew和:更冷的跳过之前的quickfix列表。
#1
2
You can use the following:
你可以使用以下方法:
" Filter the quickfix list
function! FilterQFList(type, action, pattern)
" get current quickfix list
let s:curList = getqflist()
let s:newList = []
for item in s:curList
if a:type == 0 " filter on file names
let s:cmpPat = bufname(item.bufnr)
elseif a:type == 1 " filter by line content
let s:cmpPat = item.text . item.pattern
endif
if item.valid
if a:action < 0
" Keep only nonmatching lines
if s:cmpPat !~ a:pattern
let s:newList += [item]
endif
else
" Keep only matching lines
if s:cmpPat =~ a:pattern
let s:newList += [item]
endif
endif
endif
endfor
call setqflist(s:newList)
endfunction
Then define four mappings (replace ø with something that fits for you, mine start with ð which I think might be unavailable on your keyboard) that map respectively to:
然后定义四个映射(ø替换为适合你的东西,我开始ð我认为可能无法在你的键盘),分别映射到:
nnoremap ø :call FilterQFList(0, -1, inputdialog('Remove file names matching:', ''))<CR>
nnoremap ø :call FilterQFList(0, 1, inputdialog('Keep only file names matching:', ''))<CR>
nnoremap ø :call FilterQFList(1, -1, inputdialog('Remove all lines matching:', ''))<CR>
nnoremap ø :call FilterQFList(1, 1, inputdialog('Keep only lines matching:', ''))<CR>
This way you can filter your quickfix list with any pattern (you have the power of vim reg.exps). Use :cnewer
and :colder
to jump through previous quickfix lists.
通过这种方式,您可以使用任何模式过滤您的quickfix列表(您拥有vim reg.exp的功能)。使用:cnew和:更冷的跳过之前的quickfix列表。