You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just installed Navigator, love how this plugin turns my NeoVim more into an IDE! ❤️
I ran into some notification spam in Python projects. They appear to come from two sources:
https://github.com/ray-x/navigator.lua/blob/master/lua/navigator/lspclient/python.lua#L20
This repeated print() happens when opening a Python file in a project that has a virtual environment (i.e. ./.venv/pyvenv.cfg exists). It looks like it prints every file/folder in my working directory, one by one. Every print() call is interleaved with a "Press ENTER or type command to continue" prompt, which is cumbersome when opening the file. To me, this looks like a debugging print that could be hidden behind a debug-flag or removed entirely.
(P.S. I also ran into astral-sh/ruff#12523 (comment) after installing Navigator, but that's probably a problem in Ruff's language server, but perhaps somebody here would know what's going on there 🙂)
The text was updated successfully, but these errors were encountered:
Yeah, I encountered the same issue; I have many hidden files/folders with ".*", and it keeps printing this message Press ENTER or type command to continue.
My current workaround is activating the Python environment first for the project I use nvim with.
Just installed Navigator, love how this plugin turns my NeoVim more into an IDE! ❤️
I ran into some notification spam in Python projects. They appear to come from two sources:
This repeated
print()
happens when opening a Python file in a project that has a virtual environment (i.e../.venv/pyvenv.cfg
exists). It looks like it prints every file/folder in my working directory, one by one. Everyprint()
call is interleaved with a"Press ENTER or type command to continue"
prompt, which is cumbersome when opening the file. To me, this looks like a debugging print that could be hidden behind a debug-flag or removed entirely.This notification is shown in any Python environment, and I would like to hide this one as well. This one is less of a dealbreaker though, because it's only shown once when opening the project and doesn't prompt me to hit ENTER to continue.
(P.S. I also ran into astral-sh/ruff#12523 (comment) after installing Navigator, but that's probably a problem in Ruff's language server, but perhaps somebody here would know what's going on there 🙂)
The text was updated successfully, but these errors were encountered: