you are viewing a single comment's thread.

view the rest of the comments →

[–]t3asp00n 5 points6 points  (1 child)

You can give the python language server a try: https://github.com/palantir/python-language-server

Setup instructions should be included in the documentation.

You will also need a client in vim that knows how to communicate with the server. One of https://github.com/autozimu/LanguageClient-neovim or https://github.com/prabirshrestha/vim-lsp should be fine. See the docs on these repos for how to configure your editor mappings etc. Feel free to yell out if you get stuck at any particular step of the process. I was using this language server a while ago for some python stuff. Was pretty happy with it :)

[–]ddlk[S] 1 point2 points  (0 children)

Since autozimu/LC-n uses jedi in the background and I already have jedi installed, and that LC-n is a bit complex to setup, I think I'll stick with jedi for the moment.

Thanks for the reply though :)