Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show always collapse sections of code in Visual Studio Code

Collapse/expand controls appears you need to mouse over the area just to the right of the line numbers. Is way show this section always without mouse over the area?Is this feature supported?

like image 663
user7358060 Avatar asked May 31 '17 08:05

user7358060


2 Answers

  1. Go to bottom left side and click settings icon.
  2. Click settings and find ' "editor.showFoldingControls": "mouseover" '
  3. Write "always" instead of "mouseover"

enter image description here

like image 158
Emre HIZLI Avatar answered Jan 04 '23 03:01

Emre HIZLI


Or you can add in settings.json

"editor.showFoldingControls": "always"
like image 31
Alexander Shestakov Avatar answered Jan 04 '23 03:01

Alexander Shestakov