Visual studio code vertical guidelines [duplicate] - visual-studio-code

This question already has answers here:
Default indent line guide in Visual Studio Code?
(3 answers)
Closed 3 years ago.
One of my extensions in Visual studio code turned off default vertical guidelines and even if it seems trivial I can't find setting that may turn it on again.
How it works now:
Expected result:

the setting your are looking for is:
Editor: Render Indent Guides
or through the settings file itsef:
"editor.renderIndentGuides": true
You can access the settings by pressing CTRL/⌘+, and then search for "render indent".

Related

menu bar gone in visual studio code macos [duplicate]

This question already has answers here:
Is there a shortcut to hide the side bar in Visual Studio Code?
(10 answers)
How to restore the menu bar in Visual Studio Code
(15 answers)
Closed 28 days ago.
I'm on a macbook just messing around with a project I had when I suddenly did something and now my menu bar and my explorer on the left side of the screen is gone:
This is a picture from google to better demonstrate what I'm looking for:
I tried to find the layout file and then just delete it making the thing reset it self but I couldn't find it.
um i actually found the file now so its all good:) if anyone in the future have the same problem just go to "~/Library/Application Support/Code/User/" (macos) and delete the settings.json and then just restart the visual studio code app and its all good

VSCode + Debugger console. How to change the color of text in debugger? [duplicate]

This question already has answers here:
Visual Studio Code Debug Console colors?
(13 answers)
Closed 2 years ago.
Light theme color is not visible in the debugger.
Add this lines after the "workbench.colorTheme" option.
"workbench.colorCustomizations": {
"debugConsole.warningForeground": "#HEXCODE",
"debugConsole.errorForeground": "#HEXCODE",
"debugConsole.sourceForeground": "#HEXCODE",
"debugConsole.infoForeground": "#HEXCODE"
}
You also have some information here:
Modify editor text color in visual studio code?

why my emmet abbreviation only show 2 column? [duplicate]

This question already has answers here:
Visual Studio Code intellisense showing one suggestion at any time
(2 answers)
Closed 2 years ago.
yesterday my emmet abbreviation was able to show a lot but now only 2, how can I fix it?
my emmet
my emmet border
the emmet abbreviation it should be
Visual Studio Code intellisense showing one suggestion at any time
Just drag the bottom border for the emmet abbreviation suggestions drop box down.
The above link has a similar question with a much better and properly explained answer.

Run | Debug buttons on line 3 - Visual Studio Code [duplicate]

This question already has answers here:
How to disable "Run|Debug" line in vscode?
(6 answers)
Closed 2 years ago.
I'm trying to remove / hide annoying buttons on line 3 when I run my Flutter application.
Problem is when I am editing code that buttons keep hiding and showing and my code going up - down.
How it looks: https://imgur.com/a/6qlYjl2
Any advice ?
disable the settings Dart: Show Main Code Lens or Dart: Show Test Code Lens.
This occurs due to codelens
I referred this issue

VS Code :: Cannot edit in read-only editor when Compare Selected [duplicate]

This question already has answers here:
Visual Studio Code: can't edit LEFT-side file during COMPARE
(2 answers)
Closed 3 years ago.
I'm using VS Code 1.140.1 on MacOS Catalina and I need to compare two files.
I open both files with VS Code
I select both
I right click on them and I select "Compare Selected"
The comparison works but when I try to edit while comparing I cannot, VS Code says: "Cannot edit in read-only editor".
That is a bit frustrating because other IDE like Notepad++ they indeed allow you to edit while comparing and this is very useful as it shows you when the 2 files are the same.
Is there any way around?
Or do you suggest to change VS Code with another IDE?
After exhaustive research I found the solution here:
Visual Studio Code: can't edit LEFT-side file during COMPARE
In fact only the LEFT side is not editable, the RIGHT side is alright.