Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(health): fix pyenv root and python exepath detect issue | Abao Zhang | 2024-07-24 |
| | | | | | | | | | | | | | | | | | | Fix the following two issues: - pyenv root detection issue When `PYENV_ROOT` environment variable is not set, neovim will detect pyenv's root via `pyenv root` command, but which will be always fail because `vim.fn.system()` returns result with additional `\n`. Using `vim.system` instead prevents this problem. to trim it before check whether it is exists - python executable path detection issue Filter unrelated `python-config` in cases where multiple python versions are installed, e.g. `python-config`, `python3.10-config`, `python3.11-config` etc. | ||
* | fix(health): fix fetching url with python in provider health (#29594) | Stanislav Asunkin | 2024-07-07 |
| | |||
* | refactor(lua): use tuple syntax everywhere #29111 | Ilia Choly | 2024-06-04 |
| | |||
* | refactor: fix luals type warnings | dundargoc | 2024-05-27 |
| | |||
* | refactor: move provider-related to where they are used | dundargoc | 2024-05-25 |
| | |||
* | refactor: replace deprecated vim.loop with vim.uv | dundargoc | 2024-05-24 |
| | |||
* | fix: merge all provider healthchecks into a single health.lua | dundargoc | 2024-05-22 |
This will help manage the overly granular checkhealth completion to go from ``` vim.health vim.lsp vim.provider.clipboard vim.provider.node vim.provider.perl vim.provider.python vim.provider.ruby vim.treesitter ``` to ``` vim.health vim.lsp vim.provider vim.treesitter ``` |