The photo of timeline and outline is below. I want to hide them by vscode extension.
Asked
Active
Viewed 479 times
3

Mark
- 143,421
- 24
- 428
- 436

user19742588
- 41
- 2
-
just use the menu at the top of the Bar – rioV8 Aug 11 '22 at 11:03
2 Answers
1
Those views all have a remove
command, so in an extension you could do this:
await vscode.commands.executeCommand('timeline.removeView');
await vscode.commands.executeCommand('outline.removeView');
That works in my testing.

Mark
- 143,421
- 24
- 428
- 436
0
It's work for you:
right click on the Timeline
or Outline
, then you can deselect Timeline
and Outline
.

csdroid
- 11
- 2