Visual Studio display the 'options context menu' in intellisense - visual-studio

Does anyone know how to open the Options context menu with keyboard shortcut?
Oh nevermind: SHIFT-ALT-F10

You can use Ctrl + . (period).

Related

Reactivate Multi Caret Shortcut after Resharper in Visual Studio

The usual multi caret short cut since VS2019 is
Ctrl + Alt + click : Add a secondary caret
as described in this answer.
After the installation of resharper it overrides this shortcut unfortunately with a navigation feature.
I looked throughout the shortcuts in environment-keyboard options in VS but apparently you cannot change or reinstate this shortcut according to this post.
How do I get my beloved multi-caret functionality back into my hands?
I found it! The Solution is to take away the key combination from Resharper.
Go to Resharper Options => Environment => Search & Navigation
and uncheck the Ctrl + Alt + Click checkbox:
and Visual Studio will allow you again to use the multi-caret functionality!
Here is the original link on how to disable the navigation functionality in resharper.

What is the keyboard shortcut to methods dropdown at the top of Visual Studio 2015?

What is the keyboard shortcut to methods dropdown at the top of Visual Studio 2015?
I found the answer thanks to #SergeyVlasov.
Thanks to Jeff's Keyboard Shortcut Summary Macro, I discovered that
Ctrl + F2 is mapped to a MovetoNavigationBar command, which pops me
into the "Class Name combobox." Add a tab and I'm in the Method Name
combobox.
Answer Link

How to change "Navigate backward" in Visual Studio 2013?

Default shortcut (Ctrl + .) is not working, I would like to change it to Mouse Button 4/5.
How can I achieve that ?
The shortcut for navigating backward is Ctrl + -. Have you tried that?
You can also refer to Customizing a keyboard shortcut

Visual Studio shortcut for "quick fix"

Does Visual Studio 2010 have a shortcut for quick fix?
I'm tired of grabbing the mouse, hovering over this red line, waiting for the little clipboard icon to appear, clicking on the first menu item. It would be so much fast to just open that dialog with some keys and confirming the first (i.e. selected) item.
The feature is called the "Smart Tag".
Default Keyboard Shortcut Schemes (ReSharper documentation)
Stack Overflow question How does one set Visual Studio 2010 keyboard shortcuts comfortably, especially when using ReSharper?
Stack Overflow question Visual Studio keyboard shortcut to automatically add the needed 'using' statement
They can usually be invoked via the keyboard using either:
Ctrl+. (on a standard QWERTY keyboard)
Alt+Shift+F10 (if you've not got Function Lock enabled)
If your cursor is on the item that is underlined, you can use Ctrl + . to pop up the intellisence/suggestion context menu.
Alt + Shift + F10 does the trick.
Via #Rohit from Visual Studio keyboard shortcut to automatically add the needed using statement
If you want to edit the shortcut of quick fix you can do the following:
Open Tools->Options->Keyboard and in the Show commands containing field enter EditorContextMenus.CodeWindow.QuickActionsForPosition and replace the old shortcut with the new one.

Visual studio or resharper shortcut to close currently selected file in IDE

Is there a shortcut in VS 2005 or resharper to close the current file. or "save and close" would be even better
Ctrl + F4
Save and close would
Ctrl + S followed with Ctrl + F4
Visual Studio 2015 + Resharper
The question is a bit old. Just wanted to update it with the current solution.
As you can see below, you can also completely customize your shortcuts:
just navigate to Tools > Options
on the left pane, go to Environment > Keyboard
now use the field Show commands containing to search for file.close
select File.Close on the list
click the field Press shortcuts keys
type your desired shortcut, for example, <Ctrl> + W
finally, click Assign
And you're good to go!
Ctrl+S, Ctrl+F4 will save and close the current file.
Tools -> Options -> Keyboard
Find "Windos.CloseDocumentWindow"
And for me, need to set "Use new shortcut in" to "text editor" to override old ctrl+w without delete

Resources