Working without Tabs -> Simulating Buffers section #7043
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
moveToActiveGroupIfOpen
which is being tracked in microsoft/vscode#204942 and has PR in microsoft/vscode#205442.Adds section to Get Started -> Working without Tabs called "Simulating Buffers" which helps users coming from buffer-centric editors such as Emacs and vi. These users are accustomed to a model where any open file ("buffer") can be easily viewed in any split, without having to re-open the file a 2nd time. These users want to split window but don't wish to care about which Editor is in which Editor Group.
revealIfOpen
+moveToActiveGroupIfOpen
enables that functionality—if a user opens a file that's already open, instead of just surfacing the Editor within it's previous Editor Group, the Editor will be moved into the active Editor Group and then revealed. This means users can use the Quick Open to jump to files from any split without inadvertently opening it multiple times in multiple editor groups.