diff options
| author | Chris Bandy <bandy.chris@gmail.com> | 2025-04-10 22:48:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-10 15:48:31 -0700 |
| commit | 4ea9083b6d3dff4ddc6da17c51334c3255b7eba5 (patch) | |
| tree | b3c094868a4942151bf8ec0d5cd87bf7cac85a92 /.github/ci | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar.gz nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar.bz2 nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar.lz nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar.xz nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.tar.zst nvim-lspconfig-4ea9083b6d3dff4ddc6da17c51334c3255b7eba5.zip | |
refactor: replace vim.loop with vim.uv #3703v2.0.0
The former is deprecated in neovim 0.10. Remove the check added in
9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.
See: https://github.com/neovim/neovim/blob/v0.10.0/runtime/doc/deprecated.txt#L55
Diffstat (limited to '.github/ci')
| -rw-r--r-- | .github/ci/run_sanitizer.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.github/ci/run_sanitizer.sh b/.github/ci/run_sanitizer.sh index faee3d55..9b560d84 100644 --- a/.github/ci/run_sanitizer.sh +++ b/.github/ci/run_sanitizer.sh @@ -22,12 +22,3 @@ if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANC echo 'Do not use deprecated util functions: '"${SEARCH_PATTERN}" exit 1 fi - -SEARCH_PATTERN='(vim\.uv)' - -if git diff --pickaxe-all -U0 -G "${SEARCH_PATTERN}" "${REF_BRANCH}" "${PR_BRANCH}" -- '*.lua' | grep -Ev '\.lua$' | grep -E "^\+.*${SEARCH_PATTERN}" ; then - echo - echo 'Do not use modules that are too new: '"${SEARCH_PATTERN}" - echo 'Consult README to check the minimum supported neovim version.' - exit 1 -fi |
