lsp-python-ms icon indicating copy to clipboard operation
lsp-python-ms copied to clipboard

lsp-mode :heart: Microsoft's python language server

Results 25 lsp-python-ms issues
Sort by recently updated
recently updated
newest added

For some time now, the display of documentation does not work with many numpy functions. `lsp-ui-doc-show` works` for everything else (including for example built-in functions, scipy and locally defined functions)...

Sometimes lsp enters a state where, for any character I type, the progress bar in the modeline shows up for a brief second, and a message is shown that the...

Steps to reproduce: ```python from torch.optim.adam import Adam Adam() # when lsp tries to give arguments hint in the mini buffer. The following error is invoked. ``` ```Error processing message...

Not sure where to report this and where this bug might happen. If I'm viewing a file which has multiple classes and a split my emacs frame into two side-by-side...

Using named parameters are not being parsed correctly. Just something as simple as: print("this should not be an error!", file=sys.stderr) Results in this: ![image](https://user-images.githubusercontent.com/725981/125875821-248f0b66-9ad1-47bf-ae95-50e793c9b215.png)

Hello, I am using this server with doom emacs and everything is ok except for one issue. When I instantiate class, let's say store it in variable `X`, then try...

I have an issue similar to #120 and #96, where imports of project modules fail when I send a file to the python interpreter with `C-c C-c` that is located...

I believe that the packages downloaded in a specific anaconda environment are not being recognized. I have tried to reinstall the package and the server after switching to different conda...

This PR chiefly fixes virtual environment resolution on Windows. I've also added a check for a virtual environment set with pyvenv.el, which overrides any filesystem-based environment detection. Finally, it rewrites...

For example, I want use pylint after lsp-ui, and mypy after pylint, how should I setup?