docs: remove outdated notes on splits from roadmap

This commit is contained in:
Jason Killian 2019-03-08 00:34:27 -05:00
parent a01e7ad965
commit 81ba1f2993
3 changed files with 7 additions and 10 deletions

View File

@ -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

View File

@ -33,4 +33,4 @@ suite('Neovim Validator', () => {
// assert
assert.equal(actual.numErrors, 0);
});
});
});

View File

@ -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