vim-easycomplete
vim-easycomplete copied to clipboard
How can I add package support in easycomplete for python 3?
I need to add support for third-party packages in auto-completion for python, like in Jedi vim. How can I add it, or at least combine your plugin with Jedi-vim (so that jedi-vim responses are used for .py files)?
4a30f048a35f873c66554196110f623c5cdc41a8
update plugin and simply change .py files lsp server to jedi-language-server
let g:easycomplete_lsp_server = {"py":"jedi-language-server"}
install jedi-language-server by mason.nvim or by yourself.
thank you so much!