Does cscope support history list recording?

2019-05-24 09:00发布

I use < C-\ >C to get the callers of one function, then I can press one number to jump to one caller. But if I want to jump to another caller, I had to press < C-T> to jump back, and press < C-\ >C again to get the caller list. Does cscope support history list recording ?

标签: vim cscope
3条回答
爷、活的狠高调
2楼-- · 2019-05-24 09:25

If you are using VIM, you can try quick fix

:se cscopequickfix=s-,c-,d-,i-,t-,e-

Navigate next or previous result with :cn :cp

Use :cw to display cscope search result.

查看更多
Evening l夕情丶
3楼-- · 2019-05-24 09:33

I have no real experience with cscope but take a look at :help cscopequickfix: with this option set the <C-\>c results are supposed to appear in the quickfix window.

查看更多
聊天终结者
4楼-- · 2019-05-24 09:41

For one thing, you can use

:se cscopetag

or

:lcscope ....
:lopen

With the latter you can even use :lolder and :lnewer to switch back and forth between previous cscope queries.

he cscopetag:

If 'cscopetag' set, the commands ":tag" and CTRL-] as well as "vim -t" will always use |:cstag| instead of the default :tag behavior. Effectively, by setting 'cst', you will always search your cscope databases as well as your tag files. The default is off. Examples:

:set cst
:set nocst

That way you you just

:tnext
:tprev

like always.

Alternatively, you can use

查看更多
登录 后发表回答