Implementation Comparison
After doing some investigations, I found that the pull request feature is a little bit different from the current implementation of vscode.
Your implementation are:
When user press the backspace button or control-backspace
Adjust the editor's view point to reveal the first cursor selection regardless of the numbers of selection.
Current implementation of vscode are:
When user press the backspace button
If there is only one selection, adjust the editor's view point to reveal the only one cursor selection with default reveal type.
Otherwise, not to reveal the selections, the editor's view point stays still.
Suggestion
In order to keep consistency with default vscode implementation and mainstream editor implementation It may be better to add a preference to let people choose whether they would like to reveal the cursor if there are multiple selections.
Thanks for the pull request.
Implementation Comparison After doing some investigations, I found that the pull request feature is a little bit different from the current implementation of vscode.
Your implementation are:
Current implementation of vscode are:
Suggestion In order to keep consistency with default vscode implementation and mainstream editor implementation It may be better to add a preference to let people choose whether they would like to reveal the cursor if there are multiple selections.