aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
};