why my emmet abbreviation only show 2 column? [duplicate] - visual-studio-code

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.

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

Why Boiler plate is not showing in vs code [duplicate]

This question already has answers here:
Some Emmet abbreviations in VSC not working, like '!' or using '*'
(8 answers)
Closed 7 months ago.
I installed vs code but I cannot see boiler plate all the other Emmet recommendations are working but only boiler plate is not showing. I tried to find solutions on net but no luck.
Any suggestions how to fix it ? Boiler plate recommendation is not working
go to settings or press Ctrl+, ->Extension -> Emmet and add item
with include language you have key and value set for example
html
vue
...etc
If you want to use the Tab key for expanding the Emmet abbreviations, add the following setting:
"emmet.triggerExpansionOnTab": true
this link is useful emmet for vscode
hopefully that is help you

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

Change which keys or characters trigger vscode autocomplete [duplicate]

This question already has answers here:
Prevent autocomplete in Visual Studio Code
(9 answers)
Closed 2 years ago.
I am new to VSCode, love it so far, but I am having a problem changing the intellisense autocompletion trigger. In a javascript file, typing . (period, dot) or ( (parenthesis) autocompletes the suggestion. I find this extremely annoying.
I would like to make autocomplete trigger only on tab.
I've read this page:
https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense
I've searched my keybindings.json file and couldn't find a . or ( keybinding so I could turn this off.
Any help is appreciated and sorry if I'm overlooking something obvious.
copy and paste the following code in settings.json, "editor.acceptSuggestionOnCommitCharacter": false

Visual studio code vertical guidelines [duplicate]

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".