Have you ever wondered what ReSharper actions there are or searched whether there is some ReSharper action triggered by a certain user interaction that you want to handle? It’s actually fairly easy to find out what’s there. Just add the following class to your ReSharper plugin, run it in debug mode, and check the console output.
Note: IExecutableAction
is a subtype of IUpdatableAction
, so this really works for all registered actions.