diff options
| author | G'lek Tarssza <glek@glektarssza.com> | 2025-06-24 07:47:11 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-24 06:47:11 -0700 |
| commit | 6b9897acf545466cb7566074b0f0ffada9a12416 (patch) | |
| tree | f4ca24c6fad406662e20df10692a3a55989158fb /lua | |
| parent | docs: notes on buffer-local commands #3924 (diff) | |
| download | nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar.gz nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar.bz2 nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar.lz nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar.xz nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.tar.zst nvim-lspconfig-6b9897acf545466cb7566074b0f0ffada9a12416.zip | |
docs: correct install command for pug lsp #3926
Problem:
Installing the pug lsp using the suggested method (`go get github.com/opa-oz/pug-lsp`)
does not work in the latest versions of `go` and instead produces a
message the "'go get' is no longer supported outside a module".
Solution:
Change the install command for the pug lsp to the correct command which
is `go install github.com/opa-oz/pug-lsp@latest`.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/pug.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/pug.lua b/lua/lspconfig/configs/pug.lua index f4a04895..65081a0b 100644 --- a/lua/lspconfig/configs/pug.lua +++ b/lua/lspconfig/configs/pug.lua @@ -12,7 +12,7 @@ https://github.com/opa-oz/pug-lsp An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org) -PugLSP can be installed via `go get github.com/opa-oz/pug-lsp`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases) +PugLSP can be installed via `go install github.com/opa-oz/pug-lsp@latest`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases) ]], }, } |
