The photo of timeline and outline is below. I want to hide them by vscode extension.
2
Those views all have a remove command, so in an extension you could do this:
remove
await vscode.commands.executeCommand('timeline.removeView'); await vscode.commands.executeCommand('outline.removeView');
That works in my testing.
It’s work for you: right click on the Timeline or Outline, then you can deselect Timeline and Outline.
Timeline
Outline
Click here to cancel reply.
2
Answers
Those views all have a
remove
command, so in an extension you could do this:That works in my testing.
It’s work for you:
right click on the
Timeline
orOutline
, then you can deselectTimeline
andOutline
.