Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79359919/how-c…
How can I download .vsix files now that the Visual Studio Code ...
Clone or download the extension code to your local directory. In your local directory with the copy of the product, run command: vsce package. This way, you can recreate a .vsix version of the package not only for the version presented at the Visual Studio Marketplace but for any earlier release.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79717434/how-t…
How to disable AI autocomplete in VS Code? - Stack Overflow
In around July 2025, VS Code introduced some kind of AI autocomplete. I want to turn it off. All the previous options like github.copilot.enable or github.copilot.editor.enableAutoCompletions don't...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/30037808/multi…
Multiline editing in Visual Studio Code - Stack Overflow
Is it possible to enable multiline editing like in Sublime Text? For example, press Ctrl to place additional cursor carets and being able to write/delete on multiple places in the document at one ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/40492960/how-t…
How to indent/format a selection of code in Visual Studio Code?
278 I want to indent a specific section of code in Visual Studio Code. I read How do you format code in Visual Studio Code? that gives shortcuts to indent the whole code, but it doesn't work when selecting a specific section of code. I tried Ctrl + Shift + F after selecting some line in my code, but the whole file is indented.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/3252098/what-i…
What is the best way to insert source code examples into a Microsoft ...
In Word, it is possible to paste code that uses color to differentiate comments from code using "Paste Keep Source Formatting." However, if you use the pasted code to create a new style, Word automatically strips the color coded text and changes them to be black (or whatever the auto default color is).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79616295/the-c…
The code . command opens Cursor instead of VS code
11 When you install the "Cursor" AI code editor / IDE on Windows, it takes over the code command which many developers often use in the terminal to quickly open VSCode. For example, the issue arises if you navigate to a folder with your code repo and type code . it will open that folder in "Cursor" instead of "VS Code".
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/37306672/visua…
Visual Studio Code "Open With Code" does not appear after right ...
Just installed Visual Studio Code 1.1.1 on a Windows 7 machine. When I right-click on a folder, "Open With Code" does not appear.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/75273110/add-o…
Add "Open with Visual Studio Code" shortcut to right click menu
For those who are new to the Registry Editor, here's an additional note for Step 3: Double-click on the (Default) key to open a popup. Enter your value there. If you're entering "Open with Visual Studio Code," that's fine. However, if you're entering a path, remember to wrap your path in double quotes, as shown in the example above. For instance, my icon value is:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4929251/how-to…
How to step through Python code to help debug issues?
In Java/C# you can easily step through code to trace what might be going wrong, and IDE's make this process very user friendly. Can you trace through python code in a similar fashion?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/75377406/how-c…
How can I disable GitHub Copilot in VS Code? - Stack Overflow
101 Official Documentation You can disable the built-in AI features in VS Code with the chat.disableAIFeatures setting, similar to how you configure other features in VS Code. This disables and hides features like chat or inline suggestions in VS Code and disables the Copilot extensions. You can configure the setting at the workspace or user level.