diff --git a/src/codemirrorCommands.ts b/src/codemirrorCommands.ts index c112fb7..524f2c3 100644 --- a/src/codemirrorCommands.ts +++ b/src/codemirrorCommands.ts @@ -75,13 +75,6 @@ export class VimCellManager { mapfn, enabled: keybindEnabled }: IKeybinding) => { - console.debug({ - command, - keys, - context, - mapfn, - enabled: keybindEnabled - }); if (keybindEnabled) { if (mapfn === 'map') { lvim.map(command, keys, context); @@ -237,5 +230,5 @@ export class VimCellManager { private _cm: CodeMirrorEditor; public lastActiveCell: Cell | null; public enabled: boolean; - public userKeybindings: any; + public userKeybindings: IKeybinding[]; }