Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why is rename not currently available

I have seen and used a rename feature in Visual Studio 2010.

However when editing code in C++ mode, I see no "Refactor" menu, and the CTRL+R CTRL+R command produces the following error message:

The key combination (Ctrl+R, Ctrl+R) is bound to command (Rename...) which is not currently available.

Eclipse seems to have got this right. Is there no rename feature in VS 2010 for VC++?

like image 425
bobobobo Avatar asked Dec 10 '10 03:12

bobobobo


1 Answers

Is there no rename feature in VS 2010 for VC++?

That is correct. None of the refactoring features work for C++ projects (C# and VB only). If you want these things, you need to use a third party plugin, such as Visual Assist.

like image 52
Billy ONeal Avatar answered Sep 24 '22 00:09

Billy ONeal