diff options
| -rw-r--r-- | doc/configs.md | 2 | ||||
| -rw-r--r-- | doc/configs.txt | 2 | ||||
| -rw-r--r-- | lsp/sqls.lua | 2 | ||||
| -rw-r--r-- | lua/lspconfig/configs/sqls.lua | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md index ac2b31a7..11c3fecb 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -10153,7 +10153,7 @@ vim.lsp.config('sqls', { ... }) ``` -Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). +Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). Snippet to enable the language server: ```lua diff --git a/doc/configs.txt b/doc/configs.txt index 98064681..55af312a 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -9544,7 +9544,7 @@ vim.lsp.config('sqls', { ... }) ``` -Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). +Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). Snippet to enable the language server: >lua vim.lsp.enable('sqls') diff --git a/lsp/sqls.lua b/lsp/sqls.lua index ce3eb666..25dec930 100644 --- a/lsp/sqls.lua +++ b/lsp/sqls.lua @@ -8,7 +8,7 @@ --- ... --- }) --- ``` ---- Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). +--- Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). return { cmd = { 'sqls' }, filetypes = { 'sql', 'mysql' }, diff --git a/lua/lspconfig/configs/sqls.lua b/lua/lspconfig/configs/sqls.lua index 66ac76c7..7895f27e 100644 --- a/lua/lspconfig/configs/sqls.lua +++ b/lua/lspconfig/configs/sqls.lua @@ -18,7 +18,7 @@ require'lspconfig'.sqls.setup{ ... } ``` -Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). +Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls). ]], }, |
