chore: lint

This commit is contained in:
coderiaser 2026-03-17 20:43:43 +02:00
parent b28a070a28
commit 5c19ddba61
14 changed files with 33 additions and 8 deletions

View file

@ -63,7 +63,10 @@ async function keyListener(event) {
if (ctrlMeta && event.keyCode === Key.S) {
hide();
} else if (ctrlMeta && event.keyCode === Key.P) {
return;
}
if (ctrlMeta && event.keyCode === Key.P) {
const [, pattern] = await Dialog.prompt('Apply pattern:', '[n][e]');
pattern && applyPattern(pattern);
}