Skip to content

Commit

Permalink
Remove console log statement; fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
peytondmurray committed Jan 25, 2023
1 parent 085ebb9 commit 01b3eb0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/codemirrorCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -237,5 +230,5 @@ export class VimCellManager {
private _cm: CodeMirrorEditor;
public lastActiveCell: Cell<ICellModel> | null;
public enabled: boolean;
public userKeybindings: any;
public userKeybindings: IKeybinding[];
}

0 comments on commit 01b3eb0

Please sign in to comment.