Global web icon
stackoverflow.com
https://stackoverflow.com/questions/77068802/how-d…
installation - How do I install vscode-server offline on a server for ...
In previous versions, it was sufficient to install the remote-ssh extension and then download the vscode-server-linux-x64.tar.gz file, extract it, and copy it to the server directory ~/.vscode-serv...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/78927345/vscod…
VSCode does not detect installed python libraries and modules
I have a Python project open in VSCode that operates various libraries and it's composed of different modules. Venv is activated, and all libraries are installed in venv. But still VSCode does not...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/46446901/how-c…
How can I see local history changes in Visual Studio Code?
VSCode keeps some backp inside AppData, other have suggested the Checkpoints as well as built-in VSCode feature Timeline Also, you can do grep search inside AppData\Roaming\Code\User\History directory, if WSL installed.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/48595446/is-th…
Is there any way to set environment variables in Visual Studio Code?
VSCode creates an empty shell to execute the commands. And it WON'T use the profile/settings of the current user for shell initialization. That's why our user environment settings won't take effect. However, if I set the environment in the system area, its seem to be working. Tried this on my machine and it worked as expected. Windows 10/11 set ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/44435697/chang…
Change the default terminal in Visual Studio Code
To change the default terminal for your project in Visual Studio Code: Create a folder by name of .vscode Create a settings.json file in this folder: Write the settings you want For example, if you are a Windows user and want to set "Command Prompt" as the default terminal you can write:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/48135624/how-c…
How can I change the Python version in Visual Studio Code?
In Vscode you can go to preferences > settings, then on the right menu click on the first icon which is JSON. Look for "python.pythonPath" and "python.defaultInterpreterPath" and change the path.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/36746857/compl…
Completely uninstall VS Code extensions - Stack Overflow
The fix was to open ~\.vscode\extensions\extensions.json and delete the JSON entry for ms-dotnettools.csharp which still pointed at the 32-bit extension. After deleting this part of the JSON file, installing C# extension from the GUI worked fine.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/36506539/how-d…
openssl - How do I get Visual Studio Code to trust our self-signed ...
Then, go into VScode settings, Application, Proxy, and UNCHECK the "System certificates" option. Restart vscode and RE-CHECK it. Restart again, and it works. That's it. If you want to confirm you have the same issue as I did, open the VScode developer console (Help - toggle developer tools - console tab) and check for errors.
Global web icon
reddit.com
https://www.reddit.com/r/vscode/
Visual Studio Code - Reddit
Built a vscode extension to copy text and files into chatgpt webapp using commands Found it slightly inconvenient to copy code - sometimes whole files - into chatgpt when I wanted to ask something or have it generate test cases etc.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/39494277/how-d…
How do you format code on save in VS Code - Stack Overflow
In addition to enabling setting Format On Save, for python developers, you may need to install autopep8 package which is used by vscode as default to format the python code when the code is saved.