5

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.
Industrial
  • 1,651
  • 2
  • 12
  • 9
  • Possible duplicate of [How to disable preview file with single-click in vs code?](https://stackoverflow.com/questions/40336583/how-to-disable-preview-file-with-single-click-in-vs-code) – dmbarreiro Feb 06 '19 at 12:29

1 Answers1

9

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

"workbench.list.openMode": "doubleClick"
HaaLeo
  • 5,778
  • 2
  • 30
  • 42
  • 1
    It also works if you go you to "File -> Preferences -> Settings" and search for `workbench.list.openMode` – Victor Aug 13 '19 at 12:43