Vincent Zhang

Results 249 comments of Vincent Zhang

You may need to set ["ep", "ep/api", "ep/metrics"]? Also try `lsp-pyright-extra-paths`?

`lsp-pyright-venv-path` is absolute path, while `lsp-pyright-venv-directory` is the folder name. See: ```elisp (defun lsp-pyright-locate-venv () "Look for virtual environments local to the workspace." (or lsp-pyright-venv-path (and lsp-pyright-venv-directory (-when-let (venv-base-directory (locate-dominating-file...

According to the description above, it seems the issue of `company-lsp`?

https://github.com/microsoft/python-language-server/blob/838ba78e00173d639bd90f54d8610ec16b4ba3a2/build/NetStandard.settings#L26 It's the limitation of [mspyls](https://github.com/microsoft/python-language-server).

Did you check https://github.com/microsoft/python-language-server/issues/1847?

auto-import works well in my env. ![emacs](https://user-images.githubusercontent.com/140797/90656238-e12b0c80-e274-11ea-8d6b-a9d91f741c15.gif) organize-imports doesn't work, and raises this message ```elisp LSP :: source.organizeImports action not available ```

> Great to hear that. > Do you have any addtional setup like configuration file or similar thing like that? > Besides, with version of pyright you are using, I'm...