I'm using CLion to write mostly C code, in *.c
files. How may I disable the IDE from interpreting the code as C++ for the code navigation feature, so that I can navigate symbols by name only, disregarding the parameters used in function calls? I'd like a more Vim-like experience, like when usings ctags
and cscope
, so that when I'm refactoring functions return types and parameters the IDE don't get lost.
Or should I just accept it's the way it works and rely more heavily on the various refactor wizards it provides?