How Would I Look Up C/c++ Source Code In Ubuntu Linux More Conveniently And Efficiently?
As we know , the SourceInsight is convenient to look up C/C++ source code on windows. The eclipse is a good choice for java code . I want to study the android source code ,but ther
Solution 1:
Use ctags if you are using vi, or etags for emacs.
There is also cscope, which I was very impressed with when I used it many years ago.
Solution 2:
Eclipse (indigo) is also available for c++. Check out here
Solution 3:
I recommend you the Sublime Text 2 editor : http://www.sublimetext.com/2 it's a simple, fast and powerful editor :) For example: you can define your snippets to make code writing fast, you can also search a word in all your projects files with a simple command and without having to open all the files ...
Solution 4:
You could use doxygen (www.doxygen.org) to generate cross-referencing web-pages from the source.
Post a Comment for "How Would I Look Up C/c++ Source Code In Ubuntu Linux More Conveniently And Efficiently?"