Does cscope has search history or search query sta

2019-05-07 20:20发布

I usually dig in the c source code with cscope from method to method more than 4-5 level and I have to step between the methods back and forth.

How can I see the search history in cscope so I don't have to remember the previous method name. or it will be better if it's a stack.

标签: c cscope
3条回答
▲ chillily
2楼-- · 2019-05-07 20:30

At the cscope prompt you can type Ctrl-b to go back to your previous searches. If you move to another field say "symbol search" from "definition search", you can repeat the query for the same symbol by pressing Ctrl-y. HTH.

查看更多
地球回转人心会变
3楼-- · 2019-05-07 20:51

Yes it does. The help explains this. [ Press ? in the main window.]

Ctrl+b - Step back in search history.

Ctrl+f - Step forward in search history.

查看更多
迷人小祖宗
4楼-- · 2019-05-07 20:53

I primarily use the cbrowser GUI frontend http://sourceforge.net/projects/cbrowser/ to cscope and it has a drop-down box where it remembers the last 15 queries.

Alternatively, if you use the Vim or Emacs/XEmacs editors they have cscope support built-in. I'm not familiar with how the Emacs integration works but in Vim it works pretty much like a regular tag-stack in that you can jump to symbol and then pop back to a previous symbol. Here's some information on the Vim integration http://cscope.sourceforge.net/cscope_vim_tutorial.html. There is some information on the emacs integration on the main cscope page http://cscope.sourceforge.net/.

查看更多
登录 后发表回答