Support scroll commands

This commit is contained in:
Sandeep Somavarapu
2016-08-04 18:08:09 +02:00
parent d7a60b2c70
commit 0b31fec3d8
6 changed files with 176 additions and 75 deletions

View File

@ -13,6 +13,12 @@ export enum Mode {
REPLACE
}
export interface ModifierKeys {
ctrl?: boolean,
alt?: boolean,
shifit?: boolean
}
export class DeleteRegister {
public isWholeLine:boolean;
public content:string;