それを行う良い方法が見つかりませんでした。私の現在のアプローチは、最初にすべてを選択することです:
vscode.commands.executeCommand("editor.action.selectAll").then(() =>{
textEditor.edit(editBuilder => editBuilder.replace(textEditor.selection, code));
vscode.commands.executeCommand("cursorMove", {"to": "viewPortTop"});
});
選択してから置き換えると点滅するため、これは理想的ではありません。
これは堅牢ではないかもしれませんが、私はこれを使用しています:
var firstLine = textEditor.document.lineAt(0);
var lastLine = textEditor.document.lineAt(textEditor.document.lineCount - 1);
var textRange = new vscode.Range(0,
firstLine.range.start.character,
textEditor.document.lineCount - 1,
lastLine.range.end.character);
短い例:
const fullText = document.getText()
const fullRange = new vscode.Range(
document.positionAt(0),
document.positionAt(fullText.length - 1)
)
ドキュメントテキストよりも1文字だけ長いRange
を作成し、validateRange
を使用して正しいRange
にトリミングできます。このメソッドは、テキストの最後の行を検索し、最後の文字をPosition
の終わりRange
として使用します。
let invalidRange = new Range(0, 0, textDocument.lineCount /*intentionally missing the '-1' */, 0);
let fullRange = textDocument.validateRange(invalidRange);
editor.edit(edit => edit.replace(fullRange, newText));
この例が役立つことを願っています。ソース: https://code.visualstudio.com/docs/extensions/example-hello-world#_a-simple-change
var editor = vscode.window.activeTextEditor;
if (!editor) {
return; // No open text editor
}
var selection = editor.selection;
var text = editor.document.getText(selection);