-
- true
-
-
-
\ No newline at end of file
diff --git a/.idea/runConfigurations/rdgen.xml b/.idea/runConfigurations/rdgen.xml
deleted file mode 100644
index b532a9e..0000000
--- a/.idea/runConfigurations/rdgen.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
-
-
-
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2291cd0..f958457 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/README.md b/README.md
index bd13c80..5285b98 100644
--- a/README.md
+++ b/README.md
@@ -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 GoToHandlrAction.kt]
+ A1[Rider Action GoToHandlerAction.kt]
A2[ReSharper Provider MediatorRequestNavigateFromHereProvider.cs]
end
@@ -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
diff --git a/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlerAction.kt b/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlerAction.kt
new file mode 100644
index 0000000..a559367
--- /dev/null
+++ b/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlerAction.kt
@@ -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")
diff --git a/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlrAction.kt b/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlrAction.kt
deleted file mode 100644
index 034d7ea..0000000
--- a/src/rider/main/kotlin/ca/nosuchcompany/rider/plugins/mediatr/GoToHandlrAction.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package ca.nosuchcompany.rider.plugins.mediatr
-
-import com.jetbrains.rider.actions.base.RiderAnAction
-
-class GoToHandlrAction : RiderAnAction(
- "GoToHandlrAction",
- "Go to HandlR",
- "Find the handlR handling the request")
\ No newline at end of file