mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
Normalize the vim sample
This commit is contained in:
@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user