Visual Studio 2012 Shortcut for Rename.Refactor for Visual Basic

Can I use a keyboard shortcut for the rename refactoring function for the visual base. When i try

Rename.Refactor 

In the command window, he tells me that the command is unavailable. Only C # perforate this shortcut?

+4
source share
1 answer

Refactor.Rename only works in C #, I don’t know why. But you can bind a keyboard shortcut to EditorContextMenus.CodeWindow.Rename - that works for vb. (CTRL + M, CTRL + R is free)

+4
source

Source: https://habr.com/ru/post/1433996/


All Articles