Reputation: 109
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.
Upvotes: 0
Views: 2897
Reputation: 7847
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>
Upvotes: 0
Reputation: 165148
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
Upvotes: 1