ignore modifier keys
This commit is contained in:
parent
da6372cf86
commit
083dd8ba88
|
@ -2219,6 +2219,9 @@ export function setNewSlashCommandAutoComplete(textarea, isFloating = false) {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (['Control', 'Shift', 'Alt'].includes(evt.key)) {
|
||||
return;
|
||||
}
|
||||
showAutoCompleteDebounced();
|
||||
});
|
||||
textarea.addEventListener('blur', ()=>hide());
|
||||
|
|
Loading…
Reference in New Issue