Reputation: 583
In eclipse C++ (with CDT), I would like to find all C++ references of the selected text. Ideally with the following constraints:
Currently, I know:
So, I have three questions:
Thanks,
Eclipse details:
Eclipse Version: Luna Service Release 2 (4.4.2)
CDT Version: 8.6.0.201502131403
Upvotes: 2
Views: 1826
Reputation: 953
Try to find "References in Project" instead of in the whole workspace. If you have several projects in your workspace, the search is slower than in only one project. First try References > In Project
from the context menu to see if this command works well enough for you.
If you are satisfied with it, assign a hot key in menu Windows -> Preferences > General > Keys
. Filter by text "References in Project", select the item with "Source" category. Change its hot key below and change "When" field to "C/C++ Editor".
Upvotes: 1