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 /lsp | |
| 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 'lsp')
| -rw-r--r-- | lsp/pug.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/pug.lua b/lsp/pug.lua index 03503226..8b8910de 100644 --- a/lsp/pug.lua +++ b/lsp/pug.lua @@ -4,7 +4,7 @@ --- --- 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) return { cmd = { 'pug-lsp' }, filetypes = { 'pug' }, |
