mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Prototype update import paths on file rename/move for JS/TS (#50074)
* Prototype of updating paths on rename file * Fix apply edits * Hook up to normal rename * Fix unit test * Remove timeout * Adding prompt * Bail early if user has set 'never'
This commit is contained in:
@@ -568,7 +568,10 @@ export function createApiFactory(
|
||||
}),
|
||||
registerSearchProvider: proposedApiFunction(extension, (scheme, provider) => {
|
||||
return extHostSearch.registerSearchProvider(scheme, provider);
|
||||
})
|
||||
}),
|
||||
onDidRenameResource: proposedApiFunction(extension, (listener, thisArg?, disposables?) => {
|
||||
return extHostDocuments.onDidRenameResource(listener, thisArg, disposables);
|
||||
}),
|
||||
};
|
||||
|
||||
// namespace: scm
|
||||
|
||||
Reference in New Issue
Block a user