You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 5, 2021. It is now read-only.
If you have a shortcut that match with the keymap in a specific LVL (e.g. USER (LVL1)), it stop rerturning the match for a previous LVL (e.g. DEFAULT (LVL0)).
Because of the following logic in Keymap.ts:
if(matchingCommands.length){// Matches were found at this level so do not look lower.break;}
This mechanism was put in place for being able to override a shortcut in a LVL higher previous lvl that could match with the shortcut.
However, if we create a selector that match anything in the user LVL2:
If you have a shortcut that match with the keymap in a specific LVL (e.g. USER (LVL1)), it stop rerturning the match for a previous LVL (e.g. DEFAULT (LVL0)).
Because of the following logic in
Keymap.ts
:This mechanism was put in place for being able to override a shortcut in a LVL higher previous lvl that could match with the shortcut.
However, if we create a selector that match anything in the user LVL2:
A user defining a shortcut:
Any shortuct TAB in user space will be discarted.
Thus making the tab shortcut for list not working.
We need to rethink to not discart the all the shortcut of a lower level.
The text was updated successfully, but these errors were encountered: