4,671 questions
0
votes
0
answers
22
views
VS Code Extension runs but command not showing in Command Palette and no popup appears
I am currently developing a VS Code extension. The extension seems to run without any errors, but I am facing the following issues:
No popup window appears when I execute the extension.
When I press ...
Tooling
0
votes
2
replies
40
views
Rascal TypePal Language Server (even after packaging as VSIX) slow startup in VSCode – how to reduce initialization time?
I’ve built a custom language server using Rascal MPL’s parametric language server (util::LanguageServer) with TypePal for semantic analysis, and packaged it's .rsc dependencies in a jar as a VSCode ...
Advice
0
votes
2
replies
53
views
Microsoft account for publishing VS Code extension
What is the correct Microsoft account to use for a developer J. Doe (the CTO of Example Company) to publish a VS Code extension on behalf or Example Company?
Publishing Extensions makes it sound ...
0
votes
0
answers
110
views
Visual Studio Code / Cursor terminal cannot handle Python comment with special characters
In a Python script there exists the following comment that shows the structure of an intermediate Polars data frame.
print('a')
# ┌──────────┬──────┬────────┬─────────────────┬────────────────────┬────...
0
votes
1
answer
102
views
I'm having trouble accessing a llama.cpp server instance with the Continue extension for VSCodium
I'm running GLM-4.7-Flash-GGUF:Q6_K_XL from the powershell terminal like this .\llama-server.exe -hf unsloth/GLM-4.7-Flash-GGUF:Q6_K_XL --host 127.0.0.1 --port 10000 --ctx-size 32000 --n-gpu-layers 99,...
0
votes
1
answer
116
views
VS Code Treeview gets information about the node in focus
How to sync TreeView selection with keyboard focus navigation?
In my VS Code extension, I created a custom view vortex-explorer using vscode.window.createTreeView. I am experiencing an inconsistency ...
0
votes
0
answers
54
views
VS Code Local History not obeying daysLimit setting
Today my OneDrive warned me that I deleted a lot of files; I personally did not.
I checked the OneDrive recycling bin and it was full of mid-January versions of a file I started editing this morning. ...
Tooling
0
votes
4
replies
206
views
What are the best free AI assistants?
I have been using codex and the built in github copilot and they both has a limit when I ran out I have no way to finish my code so any free AI recommendations?
0
votes
0
answers
212
views
VSCode C/C++ extension not recognizing C++26 features
I use GCC15. I want to use the C++26 feature std::views::concat. Now I'm using VSCode and the extensions "C/C++" and "CMake".
This is my code main.cpp:
#include <ranges>
#...
2
votes
1
answer
212
views
Data Wrangler in Jupyter Notebook is not displaying
I've been using Jupyter Notebooks for a long time and when I run "df" to show the dataframe it used to be presented with Data Loader.
Today I noticed that it's not displaying anymore. I've ...
Tooling
0
votes
2
replies
95
views
WebStorm hotkeys in VSCode
I recently switched from WebStorm to VS Code and I’m trying to replicate the WebStorm keyboard shortcuts (keymap) as closely as possible.
I know VS Code allows custom keybindings and JSON ...
0
votes
1
answer
91
views
How to disable or configure the rhythmic "progress" sound effect cues in GitHub Copilot/VS Code?
I noticed that during GitHub Copilot code generation ("vibe coding"), VS Code emits a rhythmic audio signal to indicate progress. While this is a helpful accessibility feature, it causes ...
3
votes
1
answer
64
views
When VSCode activates the conda environment, a black CMD window always pops up
During the environment activation process, three commands are executed:
PS F:\python_program\test_infer_once_mic_0205> D:/ProgramData/miniconda3/Scripts/activate
PS F:\python_program\...
-1
votes
1
answer
346
views
VS Code getting stuck installing extensions related to the "C/C++ Extension pack" (Error: net::ERR_CONNECTION_RESET)
If I try to install "C/C++ Extension Pack", it's just getting stuck on the "Installing" stage:
I tried waiting about a hour, reinstalling VS Code (without system files, AppData, ...
0
votes
0
answers
74
views
vscode.window.activeTerminal doesn't update when an extension opens a new terminal
I've built an small extension which runs an command in debug terminal. problem is after debug terminal created, when I check active terminal , it still points terminal before debug terminal . But, on ...