From b9d8a87fa695f8f8ba0b74860ab81e212c619ae5 Mon Sep 17 00:00:00 2001 From: kyle Date: Tue, 21 Jul 2026 09:19:19 -0400 Subject: [PATCH] remove non-implemented methods from being registered in definition handler --- lib/ruby_lsp/ruby_lsp_hanami/definition.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ruby_lsp/ruby_lsp_hanami/definition.rb b/lib/ruby_lsp/ruby_lsp_hanami/definition.rb index 09ca459..1090839 100644 --- a/lib/ruby_lsp/ruby_lsp_hanami/definition.rb +++ b/lib/ruby_lsp/ruby_lsp_hanami/definition.rb @@ -23,7 +23,7 @@ def initialize(response_builder, node_context, index, dispatcher, workspace_path @index = index @workspace_path = workspace_path - dispatcher.register(self, :on_symbol_node_enter, :on_string_node_enter, :on_class_node_enter) + dispatcher.register(self, :on_string_node_enter) end sig { params(node: Prism::StringNode).void }