diff options
| author | Niels Thykier <niels@thykier.net> | 2025-07-06 12:35:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-06 05:35:56 -0700 |
| commit | 964e2882c6126d707831f1c18076d2e29126a079 (patch) | |
| tree | ba679cc01fc64325980902f60a984130903b7430 /lsp/debputy.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar.gz nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar.bz2 nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar.lz nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar.xz nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.tar.zst nvim-lspconfig-964e2882c6126d707831f1c18076d2e29126a079.zip | |
feat: add `autopkgtest` filetype to `debputy.lua` #3939
The `vim-debian` project added `autopkgtest` as id for the
`debian/tests/control`. The `debputy` project supports that file under
a different file type ID, but will align with `vim-debian` in the next
release of `debputy`.
The `vim-debian` project adding the file type:
* https://salsa.debian.org/vim-team/vim-debian/-/commit/14776de4f28f82177ef6e2397510d01b266f3b41
* https://salsa.debian.org/vim-team/vim-debian/-/commit/d6363b31dd8baa75d8a70d63301b808583848214
The `debputy` project aligning on the file type ID:
* https://salsa.debian.org/vim-team/vim-debian/-/commit/d6363b31dd8baa75d8a70d63301b808583848214
Diffstat (limited to 'lsp/debputy.lua')
| -rw-r--r-- | lsp/debputy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/debputy.lua b/lsp/debputy.lua index 36e9f1b6..7aa71bf1 100644 --- a/lsp/debputy.lua +++ b/lsp/debputy.lua @@ -5,6 +5,6 @@ --- Language Server for Debian packages. return { cmd = { 'debputy', 'lsp', 'server' }, - filetypes = { 'debcontrol', 'debcopyright', 'debchangelog', 'make', 'yaml' }, + filetypes = { 'debcontrol', 'debcopyright', 'debchangelog', 'autopkgtest', 'make', 'yaml' }, root_markers = { 'debian' }, } |
