41 questions
-4
votes
1
answer
36
views
How do I set a font for VS code UI, if the fonts style in the metadata is "Medium" using Fonted? [closed]
The font I have is Cookie Monster by Des.
I have tried both Fonted and APC.
I also tried to set the code font, but it only allows me to do 'italic', 'bold', and 'underline', not Medium. (Medium is the ...
0
votes
0
answers
103
views
VSCode text overlap when editor font size is adjusted (it changes line height, not font size)
When I change the editor's font size to very small in Settings, the editor is hard to read with lots of overlapping text: image link.
Notice that the sticky header has a very tiny font size (which i ...
2
votes
1
answer
371
views
Disable tab key from triggering Copilot's "commit inline suggestion"
I'm using VS Code to edit a file with lots of tabs.
Github Copilot by default binds tab key to the "commit inline suggestion" action.
I want to disable that default keybinding so I don't ...
0
votes
0
answers
16
views
In VS Code how can I use multiple setting files? [duplicate]
I use VS Code on a few machines without internet connection, so I cannot use VS Code's Settings Sync.
I still want to share the settings as far as possible (just via local "USB stick sync"). ...
0
votes
0
answers
12
views
Why aren't sub-settings recognised in VS Code? [duplicate]
Consider the following settings.json file.
{
"[markdown]": {
"editor": {
"tabSize": 4,
"insertSpaces": true,
&...
1
vote
0
answers
59
views
How to prevent VS code from auto-scrolling to keep active lines centered?
VS code has a feature where if you type something close to the upper or lower bounds of the editors viewport, it auto scrolls vertically to bring the lines you just changed close to the center of the ...
3
votes
2
answers
63
views
How can I customize font color in the error panel of VS Code?
How can I customize or change the font color displayed in the editor, such as those shown by linters or code analysis tools?
I want to customize the font color for
Undefined name `abc` Ruff(F821)
&...
0
votes
0
answers
259
views
Error in VS Code: “Command 'Error Lens: Copy Problem Message' resulted in an error: Cannot read properties of undefined (reading 'document')”
I encountered an issue while using the Error Lens extension in Visual Studio Code. When I try to use the "Copy Problem Message" command, I get the following error popup:
Steps to Reproduce:
...
0
votes
0
answers
95
views
How to reference custom file location for snippets in Visual Studio Code. System wide. Not Project specific
Goal: To find a VSCode setting that I can update to have VSCode reference a custom file or folder location to store and save my code snippets. System wide and not project specific.
OR find a way to ...
3
votes
0
answers
40
views
How to disable "Alt" key menu navigation in Ubuntu for VS Code shortcuts [duplicate]
I frequently use keyboard shortcuts in VS Code to speed up my workflow. However, since switching to Ubuntu, I've noticed an issue with shortcuts that involve the "Alt" key. Every time I ...
0
votes
0
answers
50
views
VS Code: How to automatically remove double spaces on save?
I want VS Code to automatically correct spaces when saving a JSON file (I do not want this rule to be applied to any other types of files, but this is not crucial)
Example:
// before saving
{
"...
1
vote
2
answers
646
views
How to block a VS Code extension from opening output window on every parse error
When using Microsoft's Kubernetes extension in Visual Studio Code, the output window pops up every time there's a Helm parsing error. This is visually disruptive.
How can I prevent the output window ...
6
votes
2
answers
14k
views
How to stop VS Code cursor from blinking?
How do I stop the VS Code cursor from blinking? What's the right option in settings.json?
10
votes
3
answers
5k
views
VS Code finds problems in GitHub Copilot Chat code blocks. Why?
When using GitHub Copilot Chat within Visual Studio Code, I've encountered an issue where TypeScript attempts to type check "temporary files" generated by Copilot. These files, identifiable ...
1
vote
1
answer
237
views
Why does it not show a horizontal line between brackets with color in VSCode bracket colorizer?
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairs": true,
"cmake....
0
votes
2
answers
265
views
How to auto format CSS curly braces on new lines in HTML files?
In VSCode built-in auto formatter, the CSS formatter puts opening curly braces on the same line.
.myClass {
font-size: 12px;
}
Is there a way to configure the built-in VSCode formatter to put ...
0
votes
1
answer
337
views
How to fix transparent VS Code context menu on web?
I use VS Code Server as a Home Assistant integration, but I think, as it is based on VS Code Web, there should be no difference. I have just installed it, and right from the beginning, the context ...
1
vote
3
answers
1k
views
How to disable automatic pairing of triple backticks in VS Code in Markdown files while keeping other auto-pairings?
I've been enjoying the features of Visual Studio Code, but there's one specific behavior that has been counterproductive for me: the automatic pairing of triple backticks (```) in Markdown files.
To ...
5
votes
4
answers
2k
views
Where to find documentation on all available VS code editor settings.json settings?
Where I can find good documentation for every available settings.json configuration option so I can configure VS code however I like to?
1091
votes
15
answers
502k
views
How can I hide specified files/directories (e.g., .git) in the sidebar? (Visual Studio Code)
In Visual Studio Code, what setting can be configured, using file patterns, to hide files from view in the sidebar's file-explorer?
I would like to hide certain groups of files, like .meta and .git ...
1679
votes
14
answers
941k
views
How can I have multiple vertical rulers in VS Code?
VS Code's default configuration for a ruler is demonstrated below.
"editor.ruler": 80
The issue I am having with the default VS Code configuration (as shown above) is that it only renders a ...