March 22, 2021
5:55 p.m.
Le 22/03/2021 à 18:43, Victor Stinner a écrit :
In vim, I'm used to type ":grep -R Include FUNCTION" to find a function definition. I'm not convient, but I'm used to it. To find the function implementation, it's simpler: I put the cursor on function name and I type CTRL+] thanks to ctags ("make tags"), or I type :tag FUNCTION.
This is nice if you know the name of the function upfront. If you search for a functionality without knowing the function name, this doesn't work: you have to read through all three files instead of one.
Regards
Antoine.