@nmakarov/cli-toolkit 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/init.cjs +2 -0
- package/dist/init.cjs.map +1 -1
- package/dist/init.js +2 -0
- package/dist/init.js.map +1 -1
- package/dist/screen.cjs +2 -0
- package/dist/screen.cjs.map +1 -1
- package/dist/screen.js +2 -0
- package/dist/screen.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -684,6 +684,8 @@ async function showScreen(config2) {
|
|
|
684
684
|
keyMatches = true;
|
|
685
685
|
} else if (input === binding.key) {
|
|
686
686
|
keyMatches = true;
|
|
687
|
+
} else if (key?.name === binding.key) {
|
|
688
|
+
keyMatches = true;
|
|
687
689
|
}
|
|
688
690
|
if (keyMatches) {
|
|
689
691
|
if (binding.enabled === false) {
|