Add support for committing a text entry on cmd/shift click (#1185)

This commit is contained in:
alaoui abdellah 2020-04-03 13:41:32 +01:00 committed by GitHub
parent b9b58d4464
commit 980d08ce56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,6 +109,13 @@ export function textWysiwyg({
ev.preventDefault();
handleSubmit();
}
if (ev.key === KEYS.ENTER && (ev.shiftKey || ev.metaKey)) {
ev.preventDefault();
if (ev.isComposing || ev.keyCode === 229) {
return;
}
handleSubmit();
}
if (ev.key === KEYS.ENTER && !ev.shiftKey) {
ev.stopPropagation();
}