-
Hi! I'm trying to interface pyright with Kakoune, since it seems to be significantly faster than pyls. However, I'm having a problem with import resolution. Here's a minimal working example:
First, I run I'm not sure if this helps at all, but the language server also never displays that it found |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
The pyright language server has been integrated successfully with neovim, sublime and emacs. You can find links to these projects on the main pyright page. The authors of these projects may be able to help you debug the issue you're hitting. My guess is that the workspace root directory is not being passed through correctly from the editor to the LSP. |
Beta Was this translation helpful? Give feedback.
-
TL;DR: pyright supports |
Beta Was this translation helpful? Give feedback.
TL;DR: pyright supports
rootPath
but notrootUri
, both are deprecated soworkspaceFolders
is what should be used going forwards.