Is there any utility or plugin which provides cscope like functionality for C++. I am looking for
all references to a symbol
global definitions
functions called by a function
functions calling a function
files including a file
...
Hi,
I know this has been discussed a lot of times but is there any nice how-to for c/c++ intellisense in emacs? I have never been able to set up cedet properly.
Right now I am working on a maintenance project with a huuge code base and it is very difficult to manage without proper intellisense. Currently I am using vim with ctags/cscop...
Hello
I use cscope with vim.
When doing large edits for several files, cscope will report old line numbers for changed files.
How can I rebuild cscope db from vim without losing
opened tabs/windowses in vim
connection with cscope engine
Thanks
...
Hello all,
I am working with Visual Studio (2008 edition) for the first time. Used to programming in a Unix environment, I have become quite used to cscope and vim. For my current project, I really need cscope. I was wondering if there is any way I could use cscope on Visual Studio - or use cscope in Windows. Or if there is another tool...
I am trying to write a macro which calls cscope-find-functions-calling-this-function on each and every tag in a file displayed in the *Tags List* buffer (created by list-tags command). This should create a buffer which contains list of all functions calling a set of functions defined in a certain file.
I just position the point at the s...
Are there any alternatives to ctags and cscope with Objective-c support. This does pertain to cocoa development, so inevitably it seems I will be using Xcode (and probably should). I was just wondering what are my Vim options.
Maybe there is some type of plugin system like eclim, but for xcode?
EDIT
So it seems that other than upda...
There are some folder that contains space, and as a result, those folders can not be indexed using cscope.
Can i ask you for help to solve this,or any suggestion.
thanks
Julius
...
If I have a ruby file "test.rb" that contains the following:
class Test
#########################
#some pointless comment
#
#########################
def asdfasdf
end
end
and I run cscope on it with (I have a mapping for this within vim):
find . -iname '*.rb' -o -iname '*.erb' -o -iname '*.rhtml' | cscope -q -i - -b
cs...
i have template class A, the definition is in a.hpp
a.h
template <...>
A
{
void Test();
};
#include a.hpp
if let
cscope -bq a.h
then cscope can find Test declaration, but cannot find definition.
if let
cscope -bq a.h a.hpp
then cscope even cannot find Test declaration.
any advice?
thank you.
...
Has anyone managed successfully using cscope with Python code? I have VIM 7.2 and the latest version of cscope installed, however it doesn't get my code's tags correctly (always off by a couple of lines). I tried the pycscope script but its output isn't supported by the modern version of cscope.
Any ideas? Or an alternative for browsing...
Hi friends,
I am trying to install the cscope_macros.vim plugin for gvim.
When I am trying to source it from .vimrc it is throwing this error:
bash: cscope.vim: line 29: syntax error near unexpected token "cscope"'
bash: cscope.vim: line 29:if has ("cscope")'
Please help me in correcting this.
...
I am using cscope to get familiar with all the keywords used in socket programming. I went to the directory with c files. I used cscope. and then I searched for AF_INET. I got this :
#define AF_FILE PF_FILE
#define AF_INET PF_INET
#define AF_AX25 PF_AX25
This was a full page. I only published part of it. Now I ...
I've setup emacs 23.1.50.1 with CEDET 1.0 and ECB 2.40 (heavily inspired by Alex Otts setup at http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el and his gentle introduction to Cedet ( http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html ), thanks Alex). It works quite well, but I need more understanding abou...
Cscope has eleven search input fields in interactive mode. But when I try to use it in line-oriented output mode and specify Find all symbol assignments: field using -10 switch it does not work. Any ideas?
Thanks.
...
The following command works fine:
$>cscope -b -R
However, the option for inverted index does not work:
$>cscope -b -q -k -R
Input file specified two times.
cscope: cannot create inverted index; ignoring -q option
cscope: removed files ncscope.in.out and ncscope.po.out
I googled this one and found some hits. But could not fin...