diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-09-05 21:36:57 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-09-05 21:36:57 +0900 |
commit | bf9bec21461991a1e4b7581446ecfe21091a9597 (patch) | |
tree | ff7139f8047a23011c329f1c93eb79fac234cce3 /src/content/InputDriver.ts | |
parent | faba02ec21e9848b1cdf6a6a8bf507500a34290a (diff) |
Do not map Ctrl+C on imput
Diffstat (limited to 'src/content/InputDriver.ts')
-rw-r--r-- | src/content/InputDriver.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/content/InputDriver.ts b/src/content/InputDriver.ts index ec1f2cc..0472088 100644 --- a/src/content/InputDriver.ts +++ b/src/content/InputDriver.ts @@ -8,9 +8,6 @@ const cancelKey = (e: KeyboardEvent): boolean => { if (e.key === '[' && e.ctrlKey) { return true; } - if (e.key === 'c' && e.ctrlKey) { - return true; - } return false; }; |