Indicator of what's inside of curly braces [duplicate] - visual-studio-code

This question already has answers here:
Dash line between curly brackets in VS Code
(3 answers)
Closed 15 days ago.
I was watching a video that which had a visual help to know what's inside of curly braces:
within curly braces
does anyone know how to activate this?
I don't know exactly how to search it. I couldn't find it in the settings. Or is it an extension?

This is the editor.guides.bracketPairs setting. You can add
"editor.guides.bracketPairs": true
to your settings.json, or if you only want the guide for the current line,
"editor.guides.bracketPairs": "active"

Related

Deactivate highlighting of special characters in VSCode [duplicate]

This question already has an answer here:
Fix issue With VS Code: yellow orange border box around characters
(1 answer)
Closed last month.
The more i try to dig in the VSCode settings, i cant seem to find out how do deactivate that, and I'm wondering if someone knows. Thanks in advance
I navigated through the whole settings things of VSCode including the json and found nothing
Go to settings and search for Unicode Highlight and set it to false

My brackets and parathensis started showing as multicolored in VS Code [duplicate]

This question already has answers here:
vscode bracket pairs changed colors with v1.67
(3 answers)
Closed 10 months ago.
For some reason my brackets and parenthesis started showing is multicolored rather than white which I find annoying(see top image compared to bottom) I went threw all the theme color settings and can't seem to get it back that way) I'm not sure what changed.
You can disable this new feature using "editor.bracketPairColorization.enabled": false,.
The Colour change to the brackets happen when you upgrade your VS Code to version 1.67.0.
I had 1.65.2 earlier (see attached image) and updated to 1.67.0 (auto update). Now the colors have changed. If you want to see white colour for your brackets, the best suggestion is to downgrade the VS Code version to 1.65 or below, but I will not recommend that since every update contains a bugfix for VS Code.
See more from VS Code April update April 2022 (version 1.67):
Bracket pair colorization enabled by default
Regards,
Manoj

How can I make the lines to enter on a new line on auto as I write across on Vscode? [duplicate]

This question already has answers here:
How do I turn on text wrapping by default in VS Code
(10 answers)
Closed last year.
The code in Vscode is not entering a new line on auto as I write across. It just keeps going sideways making it hard to see all the code.
Go to View then enable Word wrap.

How to paste one long line of code to multiple lines in vs code mac [duplicate]

This question already has answers here:
How do you format code in Visual Studio Code (VSCode)?
(29 answers)
How can I switch word wrap on and off in Visual Studio Code?
(24 answers)
Closed 2 years ago.
im trying to paste a long line of code but it only pastes to one line, is there a way to pastes it so i dont have to scroll on one line to see the whole code?
# putting this here so i can post this question
In VS Code just use "Toggle Word Wrap" from the top menu "View", then long lines will wrap visually - it's still one line just displayed so you don't have to scroll left or right.
Here a video describing this:
https://www.youtube.com/watch?v=9wUJp1UyjY8

why I can't use IntelliSense in snippet? Is there a switch that can be controlled? [duplicate]

This question already has an answer here:
code completion not working in snippet VS Code
(1 answer)
Closed 3 years ago.
I want to know why I can't use IntelliSense in snippet? Is there a switch that can be controlled?
Try changing this setting to false:
Editor › Suggest: Snippets Prevent Quick Suggestions
Control whether> an active snippet prevents quick suggestions.
"editor.suggest.snippetsPreventQuickSuggestions": true
true is the default, sounds like you want false.