removed code which is not needed anymore due to #2062

This commit is contained in:
Daniel Egger 2017-10-11 22:04:43 +02:00
parent c11bf8fc8b
commit 782d7e567d

View File

@ -887,15 +887,7 @@ class CommandOverrideCopy extends BaseCommand {
.map(range => {
const start = Position.EarlierOf(range.start, range.stop);
const stop = Position.LaterOf(range.start, range.stop);
// Insert selecting from the left to the right is a special case that
// selects one more on the right.
// The order of the if statements is to check for the case where start=stop
if (vimState.currentMode !== ModeName.Insert || start.isEqual(range.stop)) {
return vimState.editor.document.getText(new vscode.Range(start, stop.getRight()));
} else {
return vimState.editor.document.getText(new vscode.Range(start, stop));
}
return vimState.editor.document.getText(new vscode.Range(start, stop.getRight()));
})
.join('\n');
} else if (vimState.currentMode === ModeName.VisualLine) {