diff options
Diffstat (limited to 'internal/lsp/handlers_codeaction.go')
| -rw-r--r-- | internal/lsp/handlers_codeaction.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/lsp/handlers_codeaction.go b/internal/lsp/handlers_codeaction.go index 7798f24..58d7134 100644 --- a/internal/lsp/handlers_codeaction.go +++ b/internal/lsp/handlers_codeaction.go @@ -9,6 +9,7 @@ import ( "strings" "time" + "codeberg.org/snonux/hexai/internal/appconfig" "codeberg.org/snonux/hexai/internal/llm" "codeberg.org/snonux/hexai/internal/logging" ) @@ -380,7 +381,7 @@ func formatCustomDiagnostics(diagnostics []Diagnostic) string { return b.String() } -func (s *Server) customActionByID(id string) *CustomAction { +func (s *Server) customActionByID(id string) *appconfig.CustomAction { for _, item := range s.customActions() { if item.ID == id { action := item |
