aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/pug.lua
Commit message (Collapse)AuthorAgeFilesLines
* docs: add deprecation notice to lua/lspconfig/configs #4189Justin M. Keyes2025-11-151-0/+7
|
* docs: correct install command for pug lsp #3926G'lek Tarssza2025-06-241-1/+1
| | | | | | | | | | 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`.
* fix(regression): fix for vim.fs.find regression not returning parent ↵Jacob Reed2024-12-131-1/+1
| | | | directory (#3505)
* refactor: deprecate util.find_package_json_ancestordundargoc2024-12-131-3/+3
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-0/+18
Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.