parent
c3d7bd2269
commit
65a9aa1776
|
@ -129,7 +129,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||
|
||||
function relativePathToUri(path: string, resultsUri: vscode.Uri): vscode.Uri | undefined {
|
||||
|
||||
const userDataPrefix = 'vscode-userdata:';
|
||||
const userDataPrefix = '(Settings) ';
|
||||
if (path.startsWith(userDataPrefix)) {
|
||||
return vscode.Uri.file(path.slice(userDataPrefix.length)).with({ scheme: 'vscode-userdata' });
|
||||
}
|
||||
|
|
|
@ -153,7 +153,7 @@ export class BrowserWindow extends Disposable {
|
|||
scheme: Schemas.userData,
|
||||
priority: true,
|
||||
formatting: {
|
||||
label: '${scheme}:${path}',
|
||||
label: '(Settings) ${path}',
|
||||
separator: '/',
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue