Do not map Ctrl+C on imput
This commit is contained in:
parent
faba02ec21
commit
bf9bec2146
1 changed files with 0 additions and 3 deletions
|
@ -8,9 +8,6 @@ const cancelKey = (e: KeyboardEvent): boolean => {
|
||||||
if (e.key === '[' && e.ctrlKey) {
|
if (e.key === '[' && e.ctrlKey) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (e.key === 'c' && e.ctrlKey) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue