In Visual Studio 2010 Solution Explorer tree view, how can I remap the F2 key to Rename the Selected File rather than open Object Browser?
Asked
Active
Viewed 4,151 times
3 Answers
1
To enable the renaming of an identifier or method, etc. using the F2 key (i.e a variable or a method name), do the following:
- Tools -> Options
- Expand Environment and select Keyboard
- Type "Refactor.Rename" into the text box that says 'Show commands containing'
- Put the Focus on the "Press Shortcut keys" box and hit F2
- Click Assign

p.campbell
- 98,673
- 67
- 256
- 322

EdsonF
- 2,719
- 3
- 30
- 34
0
I don't know about you, but in my copy of VS2010, F2 in the Solution Explorer DOES rename the file. What exactly do you have selected when you hit F2?
-
1The OP likely selected the Visual Basic profile which maps F2 to object browser. – JaredPar Jul 30 '10 at 21:25
-
-
Jared, you're probably right - my keyboard mapping was set to Vis C# 2005 mode. Was just about to edit my answer to provide actual content, but you beat me to it. +1 – Dan J Jul 30 '10 at 21:28
-
1