aboutsummaryrefslogtreecommitdiff
path: root/src/content/InputDriver.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-09-05 21:36:57 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-09-05 21:36:57 +0900
commitbf9bec21461991a1e4b7581446ecfe21091a9597 (patch)
treeff7139f8047a23011c329f1c93eb79fac234cce3 /src/content/InputDriver.ts
parentfaba02ec21e9848b1cdf6a6a8bf507500a34290a (diff)
Do not map Ctrl+C on imput
Diffstat (limited to 'src/content/InputDriver.ts')
-rw-r--r--src/content/InputDriver.ts3
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;
};