Files
vscode-extension-samples/vim-sample/src/mappings.ts

141 lines
4.4 KiB
TypeScript
Raw Normal View History

2016-07-15 12:39:15 +02:00
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import {TextEditor} from 'vscode';
import {Motion, Motions} from './motions';
import {Operator, Operators} from './operators';
import {IController, Command} from './common';
const CHAR_TO_MOTION: { [char: string]: Motion; } = {};
function defineMotion(char: string, motion: Motion): void {
CHAR_TO_MOTION[char] = motion;
};
defineMotion('w', Motions.NextWordStart);
defineMotion('e', Motions.NextWordEnd);
defineMotion('$', Motions.EndOfLine);
defineMotion('0', Motions.StartOfLine);
defineMotion('h', Motions.Left);
defineMotion('j', Motions.Down);
defineMotion('k', Motions.Up);
defineMotion('l', Motions.Right);
defineMotion('G', Motions.GoToLine);
defineMotion('gg', Motions.GoToFirstLine);
const CHAR_TO_MOTION_COMMAND: { [char: string]: Command; } = {};
function defineMotionCommand(char: string, commandId: string, args?: any): void {
CHAR_TO_MOTION_COMMAND[char] = {commandId : commandId, args: args};
};
defineMotionCommand('g0', 'cursorMove', {to: 'lineStart'});
defineMotionCommand('g^', 'cursorMove', {to: 'lineFirstNonWhitespaceCharacter'});
2016-07-15 17:31:49 +02:00
defineMotionCommand('gm', 'cursorMove', {to: 'lineColumnCenter'});
2016-07-15 12:39:15 +02:00
defineMotionCommand('g$', 'cursorMove', {to: 'lineEnd'});
const CHAR_TO_OPERATOR: { [char: string]: Operator; } = {};
function defineOperator(char: string, operator: Operator): void {
CHAR_TO_OPERATOR[char] = operator;
};
defineOperator('x', Operators.DeleteCharUnderCursor);
defineOperator('i', Operators.Insert);
defineOperator('a', Operators.Append);
defineOperator('A', Operators.AppendEndOfLine);
defineOperator('d', Operators.DeleteTo);
defineOperator('p', Operators.Put);
defineOperator('r', Operators.Replace);
defineOperator('R', Operators.ReplaceMode);
defineOperator('c', Operators.Change);
defineOperator('v', Operators.Visual);
const CHAR_TO_COMMAND: { [char: string]: Command; } = {};
function defineCommand(char: string, commandId: string, args?: any): void {
CHAR_TO_COMMAND[char] = {commandId : commandId, args: args};
};
defineCommand('u', 'undo');
defineCommand('U', 'undo');
export interface IFoundOperator {
runNormal(controller: IController, editor:TextEditor): boolean;
runVisual(controller: IController, editor:TextEditor): boolean;
}
export class Mappings {
public static findMotion(input: string): Motion {
let parsed = _parseNumberAndString(input);
let motion = CHAR_TO_MOTION[parsed.input.substr(0, 1)];
if (!motion) {
motion = CHAR_TO_MOTION[parsed.input.substr(0, 2)];
if (!motion) {
return null;
}
}
return motion.repeat(parsed.hasRepeatCount, parsed.repeatCount);
}
public static findMotionCommand(input: string): Command {
let parsed = _parseNumberAndString(input);
let motionCommand = CHAR_TO_MOTION_COMMAND[parsed.input.substr(0, 1)];
if (!motionCommand) {
motionCommand = CHAR_TO_MOTION_COMMAND[parsed.input.substr(0, 2)];
}
return motionCommand;
}
public static findOperator(input: string): IFoundOperator {
let parsed = _parseNumberAndString(input);
let operator = CHAR_TO_OPERATOR[parsed.input.substr(0, 1)];
if (!operator) {
return null;
}
let operatorArgs = parsed.input.substr(1);
return {
runNormal: (controller: IController, editor:TextEditor) => {
return operator.runNormalMode(controller, editor, parsed.repeatCount, operatorArgs);
},
runVisual: (controller: IController, editor:TextEditor) => {
return operator.runVisualMode(controller, editor, operatorArgs);
}
};
}
public static findCommand(input: string): Command {
return CHAR_TO_COMMAND[input] || null;
}
public static isMotionPrefix(input: string): boolean {
if (input.length === 0) {
return true;
}
if (input === 'g') {
return true;
}
return /^[1-9]\d*$/.test(input);
}
}
function _parseNumberAndString(input: string): INumberAndString {
let repeatCountMatch = input.match(/^([1-9]\d*)/);
if (repeatCountMatch) {
return {
hasRepeatCount: true,
repeatCount: parseInt(repeatCountMatch[0], 10),
input: input.substr(repeatCountMatch[0].length)
};
}
return {
hasRepeatCount: false,
repeatCount: 1,
input: input
}
}
interface INumberAndString {
hasRepeatCount: boolean;
repeatCount: number;
input: string;
}