I am using vscode
to learn codes of others, and there are several projects in the CmakeList.txt
(That is to say, there are several sub projects after the main project, and after building, several executable files will be generated).
But different sub projects contain different files with the same name (like a.cpp
) which has functions with the same name (like void func(){}
), they are called by those different projects with the similar implement.
But now I want to concertrate in one particular sub project, and when I ctrl
+ left click on void func(){}
to see the implement, all void func(){}
s will come out and I have to choose the one that the particular sub project calls.
So how to set my vscode
, when I ctrl
+ left click on void func(){}
just jump into my wanted implement?