mediatr-plugin icon indicating copy to clipboard operation
mediatr-plugin copied to clipboard

[Jetbrains] Ever got frustrated to find out where was the handler of a MediatR's IRequest? Say no more. This plugin provides a context action to easily reach the handler of any MediatR request. Select...

Results 7 mediatr-plugin issues
Sort by recently updated
recently updated
newest added

If you change default hotkey for "Go to Handlr" action to custom it'll stop working. Version of plugin: 24.3.301 IDE: Rider 2024

Noticed that if handler declared as nested class navigation does not work My common structure is when my handler class is wrapped in command, so me personally it does not...

In my project, I have more than one handler for every command, when I use "Go to HandlR" or a shortcut for it, it goes to the last one in...

`Create HandlR` action does not work as intended when caret is on instance rather than class definition. It takes Controller name (request object instantiated in controller action) as generic argument...

``` public interface ISharedCommandHandler : IRequestHandler where TRequest : IRequest public class XCommandRequest : IRequest {} public class XCommandResponse {} public class XCommandHandler : ISharedCommandHandler { public async Task Handle(XCommandRequest...

When the cursor is at the beginning of the word, the shortcut ALT+H doesn't work. ![image](https://github.com/user-attachments/assets/0b41c353-373f-451c-8184-23595103cb81) or (Vim cursor) ![image](https://github.com/user-attachments/assets/dd563de8-ca40-41fa-8eb6-3bb0f7dc0156) It only works if you are inside the IRequest command/query....