l******d 发帖数: 530 | 1 像一些ide(比如source insight)那样,在source editor里的函数、变量上面点右键
,可以让你选择跳到defition,或者查找reference,在另一个窗口里可以显示该函数
、变量在哪里被引用了。 | C*O 发帖数: 389 | 2 emacs 大牛
膜拜
【在 l******d 的大作中提到】 : 像一些ide(比如source insight)那样,在source editor里的函数、变量上面点右键 : ,可以让你选择跳到defition,或者查找reference,在另一个窗口里可以显示该函数 : 、变量在哪里被引用了。
| w******p 发帖数: 166 | 3 afaik u need to install CEDET and ECB | mw 发帖数: 525 | 4 etags and grep should be enough for small projects
for large project you might need something else, as people mentioned above.
however, i would say, if you are really working on that large a project, you
should not use emacs at all.
【在 l******d 的大作中提到】 : 像一些ide(比如source insight)那样,在source editor里的函数、变量上面点右键 : ,可以让你选择跳到defition,或者查找reference,在另一个窗口里可以显示该函数 : 、变量在哪里被引用了。
| c***C 发帖数: 139 | 5 For C, C++, gtags is good enough. I believe Emacs is better for big projects
. I used to working on a project with over 2GB source code. Emacs made my
life much easier.
For Python, I just use grep and occur.
.
you
【在 mw 的大作中提到】 : etags and grep should be enough for small projects : for large project you might need something else, as people mentioned above. : however, i would say, if you are really working on that large a project, you : should not use emacs at all.
| s****a 发帖数: 238 | |
|