I’m using this plugin for my C++ files. It’s nearly perfect for what I need, but I was hoping to tweak it slightly. I have code like this:
SOME_MACRO_NAME( param1, param2 )
Right now, when I hit Ctrl + R for Goto Symbol, all that shows up is SOME_MACRO_NAME and I would like it to display SOME_MACRO_NAME( param1, param2 ).
I’ve been trying to read up on .tmLanguage files, I’ve found the files for the C++ 11 package but I’m having a struggle trying to wrap my head around what exactly I need to change.
Any help?