ignore alt and ctrl in hotkey

This commit is contained in:
Ted Unangst 2023-08-28 15:00:18 -04:00
parent b539f292a6
commit aad5243bb1
1 changed files with 7 additions and 3 deletions

View File

@ -440,9 +440,11 @@ function scrollprevioushonk() {
}
}
document.addEventListener("keydown", function(e) {
function hotkey(e) {
if (e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement)
return;
return
if (e.ctrlKey || e.altKey)
return
switch (e.code) {
case "KeyR":
@ -463,7 +465,9 @@ document.addEventListener("keydown", function(e) {
e.preventDefault()
break
}
})
}
document.addEventListener("keydown", hotkey)
function addemu(elem) {
const data = elem.alt