From 81ba1f2993ef86c74b997a591cf7230647624d88 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 8 Mar 2019 00:34:27 -0500 Subject: [PATCH] docs: remove outdated notes on splits from roadmap --- ROADMAP.md | 8 ++++---- test/configuration/validators/neovimValidator.test.ts | 2 +- test/state/vimState.test.ts | 7 ++----- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index 2e40d4cdcc8..ae982fa6d36 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -524,10 +524,10 @@ Since the list is too long, now we just put those already supported options here | ------------------------- | ----------------- | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | | :white_check_mark: :star: | :e[dit] {file} | Edit {file}. | We will open file in a new Tab of current Grouped Editor instead of opening in current tab. | | :white_check_mark: :star: | <ctrl-w> hl | Switching between windows. | As we don't have the concept of Window in VS Code, we are mapping these commands to switching between Grouped Editors. | -| :white_check_mark: | :sp {file} | Split current window in two. | VS Code doesn't support split Window horizontally. | -| :white_check_mark: :star: | :vsp {file} | Split vertically current window in two. | VS Code only supports three vertical window at most and that's the limitation of this command. | -| :white_check_mark: | :new | Create a new window horizontally and start editing an empty file in it. | VS Code doesn't support split Window horizontally. | -| :white_check_mark: :star: | :vne[w] | Create a new window vertically and start editing an empty file in it. | VS Code only supports three vertical window at most and that's the limitation of this command. | +| :white_check_mark: | :sp {file} | Split current window in two. | | +| :white_check_mark: :star: | :vsp {file} | Split vertically current window in two. | | +| :white_check_mark: | :new | Create a new window horizontally and start editing an empty file in it. | | +| :white_check_mark: :star: | :vne[w] | Create a new window vertically and start editing an empty file in it. | | ## Tabs diff --git a/test/configuration/validators/neovimValidator.test.ts b/test/configuration/validators/neovimValidator.test.ts index c898e10480c..77856323745 100644 --- a/test/configuration/validators/neovimValidator.test.ts +++ b/test/configuration/validators/neovimValidator.test.ts @@ -33,4 +33,4 @@ suite('Neovim Validator', () => { // assert assert.equal(actual.numErrors, 0); }); -}); \ No newline at end of file +}); diff --git a/test/state/vimState.test.ts b/test/state/vimState.test.ts index 51c32a23981..193640d2eb3 100644 --- a/test/state/vimState.test.ts +++ b/test/state/vimState.test.ts @@ -17,10 +17,7 @@ suite('VimState', () => { const vimState = new VimState(vscode.window.activeTextEditor!); const cursorStart = new Position(0, 0); const cursorStop = new Position(0, 1); - const initialCursors = [ - new Range(cursorStart, cursorStop), - new Range(cursorStart, cursorStop) - ]; + const initialCursors = [new Range(cursorStart, cursorStop), new Range(cursorStart, cursorStop)]; // test vimState.cursors = initialCursors; @@ -36,7 +33,7 @@ suite('VimState', () => { const cursorStop = new Position(0, 1); const initialCursors = [ new Range(cursorStart, cursorStop), - new Range(new Position(1, 0), new Position(1, 1)) + new Range(new Position(1, 0), new Position(1, 1)), ]; // test