Replies: 1 comment 3 replies
-
We actually trigger on a bit more than just opening a Python file (see our activation events for the exact list). As for triggering for other file types, there's two solutions. One is if the file type makes sense we can add it to the extension. The other is I think you can trigger the extension to load from another extension (@karthiknadig can correct me if I'm wrong). |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
The Python vscode extension allows us to select venv as well as python interpreters.
I seems like the Python extension is only started when opening a .py file. So before that, it is not possible to use it to switch env.
I would like to create a vscode extension allowing me to do the same for other types of files. (so without the need of opening a .py file)
Is this possible? How should it be done?
Thx a lot,
Beta Was this translation helpful? Give feedback.
All reactions