Reputation: 16632
But I always need to split window into 2.
1 is for test.js files and the other is for code file.
But sometimes I need to use full monitor for active editor.
To do this I want to hide left or right side for a moment.
Is there any shortcut, plugin, extension which can hide and show splitted editors?
Upvotes: 2
Views: 845
Reputation: 67609
You can maximize current group and after make it even again:
"command": "workbench.action.maximizeEditor"
"command": "workbench.action.evenEditorWidths"
Upvotes: 1