Skip to content

Commit c7a4f31

Browse files
authored
Fix handler name (#228)
1 parent aea2e39 commit c7a4f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/CfnServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ export class CfnServer {
101101
this.lsp.handlers.onExecuteCommand(
102102
withTelemetryContext('Execution', executionHandler(this.lsp.documents, this.components)),
103103
);
104-
this.lsp.handlers.onCodeAction(withTelemetryContext('Code.Action', codeActionHandler(this.components)));
104+
this.lsp.handlers.onCodeAction(withTelemetryContext('CodeAction', codeActionHandler(this.components)));
105105
this.lsp.handlers.onDefinition(withTelemetryContext('Definition', definitionHandler(this.components)));
106106
this.lsp.handlers.onDocumentSymbol(
107107
withTelemetryContext('Document.Symbol', documentSymbolHandler(this.components)),
108108
);
109109
this.lsp.handlers.onDidChangeConfiguration(
110110
withTelemetryContext('Configuration', configurationHandler(this.components)),
111111
);
112-
this.lsp.handlers.onCodeLens(withTelemetryContext('Code.Lens', codeLensHandler(this.components)));
112+
this.lsp.handlers.onCodeLens(withTelemetryContext('CodeLens', codeLensHandler(this.components)));
113113

114114
this.lsp.authHandlers.onIamCredentialsUpdate(
115115
withTelemetryContext('Auth.Update', iamCredentialsUpdateHandler(this.components)),

0 commit comments

Comments
 (0)