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

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

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

Hide the Commit & Push button in VS Code [duplicate]

This question already has answers here:
How to remove this annoying Push Changes button in vscode?
(2 answers)
Closed 7 months ago.
After the latest VS Code update there is the Commit & Push button. How could I hide it to have my IDE as it was before?
There is a configuration in VS Code for this.
There is setting in vs code to hide this action button by unchecking this you can hide the button.
You may also read the release notes from VS Code for the same. https://code.visualstudio.com/updates/v1_69#_commit-action-button-for-git-repositories

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

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