We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b8152 commit d31b341Copy full SHA for d31b341
1 file changed
internal/lsp/server.go
@@ -1517,6 +1517,8 @@ func (l *LanguageServer) handleTextDocumentHover(params types.TextDocumentHoverP
1517
}
1518
1519
func (l *LanguageServer) handleTextDocumentCodeAction(params types.CodeActionParams) (any, error) {
1520
+ l.logf(log.LevelMessage, "handleTextDocumentCodeAction params: %+v", params)
1521
+
1522
if l.ignoreURI(params.TextDocument.URI) {
1523
return noCodeActions, nil
1524
0 commit comments