未验证 提交 71ba241f 编写于 作者: A Alexandru Dima 提交者: GitHub

Merge pull request #111897 from microsoft/alex/111128

Do not touch current line's indentation when pressing Enter
...@@ -351,13 +351,6 @@ export class TypeOperations { ...@@ -351,13 +351,6 @@ export class TypeOperations {
if (ir) { if (ir) {
let oldEndViewColumn = CursorColumns.visibleColumnFromColumn2(config, model, range.getEndPosition()); let oldEndViewColumn = CursorColumns.visibleColumnFromColumn2(config, model, range.getEndPosition());
const oldEndColumn = range.endColumn; const oldEndColumn = range.endColumn;
let beforeText = '\n';
if (indentation !== config.normalizeIndentation(ir.beforeEnter)) {
beforeText = config.normalizeIndentation(ir.beforeEnter) + lineText.substring(indentation.length, range.startColumn - 1) + '\n';
range = new Range(range.startLineNumber, 1, range.endLineNumber, range.endColumn);
}
const newLineContent = model.getLineContent(range.endLineNumber); const newLineContent = model.getLineContent(range.endLineNumber);
const firstNonWhitespace = strings.firstNonWhitespaceIndex(newLineContent); const firstNonWhitespace = strings.firstNonWhitespaceIndex(newLineContent);
if (firstNonWhitespace >= 0) { if (firstNonWhitespace >= 0) {
...@@ -367,7 +360,7 @@ export class TypeOperations { ...@@ -367,7 +360,7 @@ export class TypeOperations {
} }
if (keepPosition) { if (keepPosition) {
return new ReplaceCommandWithoutChangingPosition(range, beforeText + config.normalizeIndentation(ir.afterEnter), true); return new ReplaceCommandWithoutChangingPosition(range, '\n' + config.normalizeIndentation(ir.afterEnter), true);
} else { } else {
let offset = 0; let offset = 0;
if (oldEndColumn <= firstNonWhitespace + 1) { if (oldEndColumn <= firstNonWhitespace + 1) {
...@@ -376,7 +369,7 @@ export class TypeOperations { ...@@ -376,7 +369,7 @@ export class TypeOperations {
} }
offset = Math.min(oldEndViewColumn + 1 - config.normalizeIndentation(ir.afterEnter).length - 1, 0); offset = Math.min(oldEndViewColumn + 1 - config.normalizeIndentation(ir.afterEnter).length - 1, 0);
} }
return new ReplaceCommandWithOffsetCursorState(range, beforeText + config.normalizeIndentation(ir.afterEnter), 0, offset, true); return new ReplaceCommandWithOffsetCursorState(range, '\n' + config.normalizeIndentation(ir.afterEnter), 0, offset, true);
} }
} }
} }
......
...@@ -4169,6 +4169,18 @@ suite('Editor Controller - Indentation Rules', () => { ...@@ -4169,6 +4169,18 @@ suite('Editor Controller - Indentation Rules', () => {
model.dispose(); model.dispose();
mode.dispose(); mode.dispose();
}); });
test('issue #111128: Multicursor `Enter` issue with indentation', () => {
const model = createTextModel(' let a, b, c;', { detectIndentation: false, insertSpaces: false, tabSize: 4 }, mode.getLanguageIdentifier());
withTestCodeEditor(null, { model: model }, (editor, viewModel) => {
editor.setSelections([
new Selection(1, 11, 1, 11),
new Selection(1, 14, 1, 14),
]);
viewModel.type('\n', 'keyboard');
assert.equal(model.getValue(), ' let a,\n\t b,\n\t c;');
});
});
}); });
interface ICursorOpts { interface ICursorOpts {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册