Intellij "Find Action" shortcut / hotkey not working on Windows - windows

On Windows, the shortcut CTRL + SHIFT + A to open the Find Action popup is not working. I've tried re-installing the whole IntelliJ IDE already but the issue still persists, anyone who has experienced this issue?
I'm using version 2019.2 since this is my Ultimate license.
What could be the work around for this issue?

I don't have an exact idea what has happened. But there may be some shortcut conflicts.
As an example, same shortcut keys will do different jobs based on the focus location. As an example my Ctrl + D key combination do lot of jobs as shown below,
You can find the shortcut actions assigned to Ctrl + Shift + A, by going to Settings > Keymap, and with using Find Actions by Shortcut as shown below;
Then you can clarify actions assigned for your Ctrl + Shift + A.

Related

CTRL+D is not working in vs code copy similar code

Previous in I have used ctr+d for duplicating the code many times, but when I switched to desktop and installed vs code and all the necessary extensions for my react project. And now this CTRL+D keyboard shortcut is not working. Can any help me to solve this issue
I recently met this issue too. I found a solution, see this: https://linuxpip.org/duplicate-lines-vscode/.
The main step are:
File > Preferences > Keyboard Shortcuts.
type "copy line",then you will see the related shortcuts.
remember the new shortcut(e.g. Shift + Alt + Down) or modify the shortcut to ctrl + D.
shift + alt + arrow-down works for me.
For me it was a VS Code extension causing the ctrl + ... binds not to work. It was "Vim emulation". Try isolating the issue by uninstalling the extensions until you find which one.
Similar issue for Windows 10, resolved using CTRL + F2.

What Causes Visual Studio Keyboard Shortcuts to Change? (VS2019)

For example, 'find all references' was Ctrl + Shift + F12, now seems to be Ctr + K + R
Is this a user setting or changed during a new build of VS?
Shortcut is still same. I think you might have installed extensions like ReSharper, so it might be due to that. Please uninstall extension and then check.
Reference: https://developercommunity.visualstudio.com/comments/530592/view.html
The change could have many reasons: Change of keyboard language, the configuration file might have changed something or an extension was installed.

Visual studio 2012 highlight find function has stopped functioning

Visual studio normally will find or search for any text that I have highlighted and the pressed ctrl + f, for some odd reason this functionality no longer works.
does anyone know a fix for this issue?
Edit: To clear up below is the current Scenario for my issue.
when I highlight a specific variable and then press Ctrl + F instead of bringing up the find bar with the highlighted variable in it, it brings up the find bar with previously search text
Your default settings might have been changed. Just reset it.
If that does not work;
Go to
Tools --> Options --> Keyboard (Try Resetting it here.)
In Press shortcut keys text box, press Ctrl f and see what
Shortcut currenty used by: says?
It should be Edit.Find(Ctrl+F (Global))
Hope that helps.

Visual Studio keyboard shortcut to display IntelliSense

What's the keyboard shortcut for Visual Studio to display the IntelliSense box if one accidentally hits ESC and wants the box come back again?
Additionally, Ctrl + K, Ctrl + I shows you Quick info (handy inside parameters)
Ctrl+Shift+Space shows you parameter information.
Ctrl + Space
or
Ctrl + J
You can also go to menu Tools → Options → Environment → Keyboard and check what is assigned to these shortcuts. The command name should be Edit.CompleteWord.
The most efficient one is Ctrl + ..
It helps to automate insertions of using directives. It works if the focus is on a new identifier, e.g. class name.
Ctrl+Space should do it.
It should be Ctrl + J.
If you have arrived at this question because IntelliSense has stopped working properly and you are hoping to force it to show you what you need, then most likely none of these solutions are going to work.
Closing and restarting Visual Studio should fix the problem.
If you want to change whether it highlights the best fitting possibility, use:
Ctrl + Alt + Space
Alt + Right Arrow and Alt + Numpad 6 (if Num Lock is disabled) are also possibilities.
In Visual Studio 2015 this shortcut opens a preview of the definition which even works through typedefs and #defines.
Ctrl + , (comma)
On Visual Studio Community 7.5.3 on Mac this works for me:
Ctrl + Space
The shortcut to bring up the IntelliSense box is called Edit.ListMembers. It defaults to:
Ctrl + J
The shortcut to automatically select the most likely option is Edit.CompleteWord. It defaults to:
Ctrl + Space

What is the shortcut to open a file within your solution in Visual Studio 2008?

What is the shortcut to open a file within your solution in Visual Studio 2008 (+ Resharper)?
Ctrl + T (ReSharper, Goto, type) will open a class file for you.
Looks like Ctrl + Shift + T opens files.
Depending on your keymap, Ctrl + Shift + N will open any file in the solution, or Ctrl + N will open any type.
If the standard toolbar is visible the following will open any file in the solution (resharper is not necessary).
Ctrl + D places you in the Find textbox. >of f will provide a dropdown with all files that start with f with path information after the filename to distinguish name collisions. Complete the filename, or arrow down to the correct one and hit enter to open it in the editor.
I attended a presentation recently where Kirk Jackson showed how to add aliases to the command window in Visual Studio. Bear with me, it gets better.
So it went like this:
Open Command Window and type
alias fo File.FileOpen
Now in your editor window hit Ctrl + / to put the focus into the Find box on the toolbar
If you use the prefix > this is command window (sneaky huh?) so type:
fo
and intellisense kicks in and shows you the names of the folders and files in the solution.
The alias is persistent between Visual Studio sessions.
Not exactly a keyboard shortcut but using this technique you can access any command in Visual Studio from the keyboard.
You should also check out Kirk's list of essential VS tips and tricks
It depends on the key mapping that you have set.
With default keymapping: Do Ctrl + T to open a type and Ctrl + Shift + T to open a file.
With IntelliJ like mapping : Do Ctrl + N to open a type and Ctrl + Shift + N to open a file.
Visit the following links for all your key mapping.
ReSharper 4 Default Keymap: Visual Studio scheme
http://www.jetbrains.com/resharper/docs/ReSharper40DefaultKeymap.pdf
ReSharper 4 Default Keymap: ReSharper 2.x / IDEA scheme
http://www.jetbrains.com/resharper/docs/ReSharper40DefaultKeymap2.pdf

Resources