@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.js
CHANGED
|
@@ -656,6 +656,8 @@ async function showScreen(config2) {
|
|
|
656
656
|
keyMatches = true;
|
|
657
657
|
} else if (input === binding.key) {
|
|
658
658
|
keyMatches = true;
|
|
659
|
+
} else if (key?.name === binding.key) {
|
|
660
|
+
keyMatches = true;
|
|
659
661
|
}
|
|
660
662
|
if (keyMatches) {
|
|
661
663
|
if (binding.enabled === false) {
|