In JetBrains IDEs, Main Menu | Edit | Find | Find in Files.... On Mac it has Cmd + Sift + F shortcut.
Does anybody know what action it is? I could not find it in IntelliJ action list.
Try FindInPath ("Find in Path" -- that's what "Find in Files" used to be called in the past; they have changed the name about 2 years ago or so).
Found the name here: https://gist.github.com/zchee/9c78f91cc5ad771c1f5d
IdeaVIM has a feature to display action IDs as you do things. See the section Finding action ids in the IdeaVim README for details on how to use that.
If for some reason that doesn't work, I've come up with another way to find action names to use in IdeaVIM key bindings (or anywhere else you need the action name). Here is the process:
idea.config.path on the page Directories used by the IDE to store settings, caches, plugins and logs. Currently on my machine it is "~/Library/Application Support/JetBrains/IntelliJIdea2023.2" but it depends on your OS and IntelliJ version.options/abbrevs.xml in a text editor.Example of what shows up in abbrevs.xml:
<action id="FindInPath">
<abbreviation name="zjzjzj" />
</action>
FindInPath(that's what "Find in Files..." used to be called in the past -- they have changed the name about 2 years ago or so). gist.github.com/zchee/9c78f91cc5ad771c1f5d:actionlistcommand to find the full action ID list."