diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-11-16 10:25:25 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-16 10:25:25 -0800 |
| commit | f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e (patch) | |
| tree | 4be46a33a2eb3c8f8cbc7a1e2f25599da7f4a475 /.github/workflows | |
| parent | feat: vsrocq, rename "vscoqtop" config #4176 (diff) | |
| download | nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar.gz nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar.bz2 nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar.lz nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar.xz nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.tar.zst nvim-lspconfig-f54cc14a3d0984bbc1efd02a32b4e113d19e0d8e.zip | |
fix(docs): handle config errors, document rename #4192
Problem:
If a config throws an error it fails the entire doc generation.
Solution:
Handle config error in docgen. Unfortunately, this doesn't show the
error message, it shows:
loop or previous error loading module 'lsp.volar'
instead of the actual `error('…')` message.
So meanwhile, document the current deprecation/rename pattern and use
`vim.notify()` instead.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/problem_matchers/selene.json | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/problem_matchers/selene.json b/.github/workflows/problem_matchers/selene.json deleted file mode 100644 index 4bbf24f3..00000000 --- a/.github/workflows/problem_matchers/selene.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "problemMatcher": [ - { - "owner": "selene-error", - "severity": "error", - "pattern": [ - { - "regexp": "^([^:]+):(\\d+):(\\d+):\\serror(.*)$", - "file": 1, - "line": 2, - "column": 3, - "message": 4 - } - ] - }, - { - "owner": "selene-warning", - "severity": "warning", - "pattern": [ - { - "regexp": "^([^:]+):(\\d+):(\\d+):\\swarning(.*)$", - "file": 1, - "line": 2, - "column": 3, - "message": 4 - } - ] - } - ] -} |
