6 Commits

Author SHA1 Message Date
Dave Halter
130ce7fb79 Merge pull request #1124 from adamency/master
Add Neovim Installation Requirements
2024-07-06 15:05:52 +00:00
Benjamin Habié
907b6837a9 Add Neovim Installation Requirements 2024-07-06 16:59:39 +02:00
Dave Halter
9bd79ee41a Merge pull request #1117 from dundargoc/checkhealth
Replace deprecated checkhealth syntax with newer syntax
2023-12-30 00:15:14 +00:00
dundargoc
2c188fea29 Replace deprecated checkhealth syntax with newer syntax 2023-12-27 17:03:48 +01:00
Dave Halter
b82da7d2b5 Merge pull request #1115 from jgb/master
update jedi to v0.19.1
2023-10-09 17:19:17 +00:00
Jan Geboers
c87947e760 update jedi to v0.19.1 2023-10-09 11:18:00 +02:00
3 changed files with 9 additions and 3 deletions

View File

@@ -73,10 +73,16 @@ Installation
Requirements
------------
You need a VIM version that was compiled with Python 3 or later
- **Vim**: You need a VIM version that was compiled with Python 3 or later
(``+python3``). You can check this from within VIM using
``:python3 import sys; print(sys.version)``.
- **Neovim**: You need a python environment with ``pynvim`` installed:
``pip install pynvim``
then check your environment is correctly setup from within Neovim using
``:checkhealth provider.python``
Manual installation
-------------------

View File

@@ -1,4 +1,4 @@
function! health#jedi#check() abort
call health#report_start('jedi')
call v:lua.vim.health.start('jedi')
silent call jedi#debug_info()
endfunction