aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/docker_compose_language_service.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-27/+0
| | | | | | | | | | | | | | 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.
* feat(docker-compse-lsp): add more filetype into docker compse server(#3008)Cézar Augusto2024-02-131-2/+2
| | | | | Update the root patterns according to the compose spec. Source: https://github.com/compose-spec/compose-spec/blob/master/03-compose-file.md
* fix(docs): Add note about filetype for docker-compose (#2961)Uzair Aftab2024-01-121-0/+2
|
* fix(docker_compose): constrain filetype pattern #2772Rick Bowen2023-09-111-1/+1
| | | | | | | | | | | | | | | The current configuration for `docker_compose_language_server` causes any/all YAML files to trigger loading of the docker-compose language server. This PR replaces the default configuration FileType `yaml` with the very common (sub?) FileType `yaml.docker-compose`. I believe the original _intention_ was to have all Docker-Compose files be recognized and have features as a FileType of `YAML`, but in reality the _inverse_ was configured (all YAML files are assumed to be Docker-Compose files). The `yaml.docker-compose` filetype is well recognized, even in `nvim-lspconfig`: - [lua/lspconfig/server_configurations/yamlls.lua](https://github.com/neovim/nvim-lspconfig/blob/67f151e84daddc86cc65f5d935e592f76b9f4496/lua/lspconfig/server_configurations/yamlls.lua#L6) - [sheerun/vim-polyglot](https://github.com/sheerun/vim-polyglot/blob/bc8a81d3592dab86334f27d1d43c080ebf680d42/autoload/polyglot/sleuth.vim#L629) More `yaml.docker-compose` Lua & VimScript examples: https://github.com/search?q=language%3Alua+OR+language%3A%22Vim+Script%22+%22yaml.docker-compose%22&type=code&ref=advsearch
* fix: use exepath on server command (#2595)Raphael2023-05-091-8/+1
|
* fix: update docker_compose_language_service bin_name (#2458)Marc Deop2023-02-141-1/+1
|
* feat: add docker-compose-language-service support (#2455)Marc Deop2023-02-141-0/+32