Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ _dotTrace*
# Project
/test-solution/.idea/
/test-solution/packages/
.idea
/**/.idea
*/**/Packages
/**/.intellijPlatform
13 changes: 0 additions & 13 deletions .idea/.idea.FindMyHandlR.dir/.idea/.gitignore

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/.idea.ReSharperPlugin.FindMyHandlR/.idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .idea/.idea.ReSharperPlugin.FindMyHandlR/.idea/.name

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

21 changes: 0 additions & 21 deletions .idea/runConfigurations/Rider.xml

This file was deleted.

21 changes: 0 additions & 21 deletions .idea/runConfigurations/rdgen.xml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## 26.03.07XX
- Fix issue #93: rename `GoToHandlrAction` kotlin file to `GoToHandlerAction` since this is what is referenced in the plugin.xml file.

## 26.02.28XX
- Support for 2026.1

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Boost your navigation superpowers in Rider and ReSharper with this plugin for Me
```mermaid
graph TB
subgraph "IDE Integration Layer"
A1[Rider Action<br/>GoToHandlrAction.kt]
A1[Rider Action<br/>GoToHandlerAction.kt]
A2[ReSharper Provider<br/>MediatorRequestNavigateFromHereProvider.cs]
end

Expand Down Expand Up @@ -56,7 +56,7 @@ graph TB
#### Entry Points
The plugin provides two main entry points for navigation:

1. **Rider Integration** (`GoToHandlrAction.kt`): A Kotlin-based action that integrates with Rider's action system
1. **Rider Integration** (`GoToHandlerAction.kt`): A Kotlin-based action that integrates with Rider's action system
2. **ReSharper Integration** (`MediatorRequestNavigateFromHereProvider.cs`): A C# provider that adds "Go to handler" to ReSharper's context navigation

#### High-Level Workflow
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package ca.nosuchcompany.rider.plugins.mediatr

import com.jetbrains.rider.actions.base.RiderAnAction

class GoToHandlerAction : RiderAnAction(
"GoToHandlerAction",
"Go to Handler",
"Find the handler handling the request")

This file was deleted.

Loading