Fix #115041: Path to untitled file from search editor is wrong
This commit is contained in:
Родитель
d54923b7f8
Коммит
6312db1e01
|
@ -135,6 +135,9 @@ function relativePathToUri(path: string, resultsUri: vscode.Uri): vscode.Uri | u
|
|||
}
|
||||
|
||||
if (pathUtils.isAbsolute(path)) {
|
||||
if (/^[\\\/]Untitled-\d*$/.test(path)) {
|
||||
return vscode.Uri.file(path.slice(1)).with({ scheme: 'untitled', path: path.slice(1) });
|
||||
}
|
||||
return vscode.Uri.file(path);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче