From 24ec9fd20b66129113ff77cbd8e310e9a31414df Mon Sep 17 00:00:00 2001 From: Eugene Ma Date: Thu, 22 Aug 2024 23:59:04 -0700 Subject: [PATCH] simpler fix --- internal/lsp/acmelsp/remote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/lsp/acmelsp/remote.go b/internal/lsp/acmelsp/remote.go index dcbf36f..4efb675 100644 --- a/internal/lsp/acmelsp/remote.go +++ b/internal/lsp/acmelsp/remote.go @@ -140,7 +140,7 @@ func (rc *RemoteCmd) Completion(ctx context.Context, kind CompletionKind) error cw.Clear() cw.PrintTabbed(sb.String()) } else { - fmt.Println(sb.String()) + fmt.Fprintln(rc.Stdout, sb.String()) } return nil