Normalize the vim sample

This commit is contained in:
Alex Dima
2018-11-08 10:13:29 +01:00
parent cbd57bff5f
commit 0460228f31
15 changed files with 586 additions and 388 deletions

View File

@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as vscode from 'vscode';
import { MotionState, Motion } from './motions';
export enum Mode {
@ -14,9 +13,9 @@ export enum Mode {
}
export interface ModifierKeys {
ctrl?: boolean,
alt?: boolean,
shifit?: boolean
ctrl?: boolean;
alt?: boolean;
shifit?: boolean;
}
export class DeleteRegister {
@ -48,6 +47,6 @@ export abstract class AbstractCommandDescriptor {
}
export interface Command {
commandId: string,
args?: any[]
commandId: string;
args?: any[];
}