From 8f201c215a1f9ff9d99631870bd9f42f7f108578 Mon Sep 17 00:00:00 2001 From: Aiden Scandella Date: Fri, 15 Jul 2016 18:57:29 -0700 Subject: [PATCH] Add back missing control-c registration Looks like this was accidentally removed in #445 --- src/actions/actions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actions/actions.ts b/src/actions/actions.ts index 6573ab6de28..8016378b345 100644 --- a/src/actions/actions.ts +++ b/src/actions/actions.ts @@ -360,6 +360,7 @@ class CommandCtrlOpenBracket extends CommandEsc { keys = ["ctrl+["] } +@RegisterAction class CommandCtrlC extends CommandEsc { modes = [ModeName.Insert, ModeName.Visual, ModeName.VisualLine]; keys = ["ctrl+c"];