From dca4185196c56b5ac889c54a5bbf3c4888633c51 Mon Sep 17 00:00:00 2001 From: Matthew Toohey Date: Mon, 22 Jan 2024 09:06:20 -0500 Subject: [PATCH] Fix typo in string representation of GotoReference (#9395) --- helix-core/src/syntax.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 83bd09b4dc0e..e543df06e375 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -263,7 +263,7 @@ impl Display for LanguageServerFeature { GotoDeclaration => "goto-declaration", GotoDefinition => "goto-definition", GotoTypeDefinition => "goto-type-definition", - GotoReference => "goto-type-definition", + GotoReference => "goto-reference", GotoImplementation => "goto-implementation", SignatureHelp => "signature-help", Hover => "hover",