fix: forceprettier

This commit is contained in:
Jason Poon 2018-07-15 03:09:50 -07:00
parent 5455f2a0d9
commit ee204dd8ec
5 changed files with 1070 additions and 1075 deletions

2126
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@ export class Notation {
BS: ['backspace', 'bs'],
Del: ['delete', 'del'],
' ': ['<space>'],
'\n': ['<cr>', '<enter>']
'\n': ['<cr>', '<enter>'],
};
/**

View File

@ -6,4 +6,4 @@ export class CompositionState {
this.isInComposition = false;
this.composingText = '';
}
}
}

View File

@ -1,11 +1,6 @@
import { getAndUpdateModeHandler } from '../extension';
import { ModeHandler } from '../src/mode/modeHandler';
import {
assertEqual,
assertEqualLines,
cleanUpWorkspace,
setupWorkspace,
} from './testUtils';
import { assertEqual, assertEqualLines, cleanUpWorkspace, setupWorkspace } from './testUtils';
suite('Multicursor', () => {
let modeHandler: ModeHandler;

View File

@ -88,8 +88,8 @@ suite('surround plugin', () => {
newTest({
title: 'change surround with alias',
start: ["first (li|ne) test"],
keysPressed: "csb]",
start: ['first (li|ne) test'],
keysPressed: 'csb]',
end: ['first [li|ne] test'],
});
@ -109,8 +109,8 @@ suite('surround plugin', () => {
newTest({
title: 'delete surround with alias',
start: ["first {li|ne} test"],
keysPressed: "dsB",
start: ['first {li|ne} test'],
keysPressed: 'dsB',
end: ['first li|ne test'],
});