-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Open
microsoft/vscode-copilot-chat
#2918Labels
NESIssues related to the next edit suggestions featureIssues related to the next edit suggestions feature
Description
public setPosition(position: IPosition, source: string = 'api'): void {
console.log(position);
if (!this._modelData) {
return;
}
// empty
// empty
// empty
// empty
// empty
if (!Position.isIPosition(position)) {
throw new Error('Invalid arguments');
}
this._modelData.viewModel.setSelections(source, [{
selectionStartLineNumber: position.lineNumber,
selectionStartColumn: position.column,
positionLineNumber: position.lineNumber,
positionColumn: position.column
}]);
}CleanShot.2025-12-18.at.11.35.23.mp4
Metadata
Metadata
Assignees
Labels
NESIssues related to the next edit suggestions featureIssues related to the next edit suggestions feature