I have a command in an extension, before run the command, I want to change the selection range to get the whole lines...
const sel = textEditor.selection;
const firstLine = textEditor.document.lineAt(sel.start.line);
const lastLine = textEditor.document.lineAt(sel.end.line);
const range = new vscode.Range(firstLine.lineNumber, firstLine.range.start.character, lastLine.lineNumber, lastLine.range.end.character);
I've created a new range, but I don't know how to set the selection of the document to a new range...