Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off half-open (italic) files in vscode

I want my editor to work like this:

  • Single click on a file in the project tree should SELECT the file in the tree.
  • Double click should OPEN the file PERMANENTLY.
like image 857
Industrial Avatar asked Feb 22 '18 09:02

Industrial


1 Answers

When you are using vscode v1.20.0 or later add this to your user settings:

"workbench.list.openMode": "doubleClick"
like image 193
HaaLeo Avatar answered Sep 25 '22 15:09

HaaLeo