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.
Fixes #119
This PR removes commands triggered by
ctrl+tab
orctrl+shift+tab
from keybindings wrappers.They were causing issue #119.
It seems that the commands rely on the popup UI called Quick Pick.
Even if you simply want to switch to the next editor tab by
ctrl+tab
, the menu opens, and when you release thectrl
key the focused item is selected and the selected tab opens.The behavior when releasing
ctrl
seems to be built-in to Quick Pick.This extension cannot cover to record and playback navigations on Quick Pick UI. For example,
UpArrow
/DownArrow
to select items,Enter
/Space
to accept an item, are not handled by the Keybindings system of vscode. Thus, they are not able to be recorded or to playback by an extension.