Compare commits

..

1 Commits

Author SHA1 Message Date
210939aad7 Rewrite 2025-05-13 18:13:39 -04:00

View File

@ -43,8 +43,6 @@ const
query[selected].style.boxShadow = ''
while (selected < query.length && query[++selected].classList.contains('noshow'));
if (!query[selected].classList.contains('noshow'))
highlightSelected()
return
case 'k':
@ -53,8 +51,6 @@ const
query[selected].style.boxShadow = ''
while (selected >= 0 && query[--selected].classList.contains('noshow'));
if (!query[selected].classList.contains('noshow'))
highlightSelected()
return
case 'h':
@ -66,8 +62,7 @@ const
}
else
query[selected].nextSibling.querySelector('a.clicky.hider')?.click()
if (selected + 1 <= query.length && !query[selected].classList.contains('noshow'))
if (selected + 1 <= query.length)
highlightSelected()
return
case 'c':