Skip to content

Commit

Permalink
Use the correct variable in lsp-go
Browse files Browse the repository at this point in the history
- Fixes #4225
  • Loading branch information
yyoncho committed Nov 8, 2023
1 parent 518f7d8 commit 75ea207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/lsp-go.el
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ flake.nix file with:
"Command and arguments for launching the inferior language server process.
These are assembled from the customizable variables `lsp-go-server-path'
and `lsp-go-server-wrapper-function'."
(funcall lsp-go-server-wrapper-function (append (list lsp-go-server-path) lsp-go-gopls-server-args)))
(funcall lsp-go-server-wrapper-function (append (list lsp-go-gopls-server-path) lsp-go-gopls-server-args)))

(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection 'lsp-go--server-command)
Expand Down

0 comments on commit 75ea207

Please sign in to comment.