mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
findTextInFiles - 'null' skipes configured excludes
This commit is contained in:
@@ -501,7 +501,7 @@ export function createApiFactory(
|
||||
return extHostWorkspace.findFiles(typeConverters.GlobPattern.from(include), typeConverters.GlobPattern.from(exclude), maxResults, extension.id, token);
|
||||
},
|
||||
findTextInFiles: (query: vscode.TextSearchQuery, options: vscode.FindTextInFilesOptions, callback: (result: vscode.TextSearchResult) => void, token?: vscode.CancellationToken) => {
|
||||
return extHostWorkspace.findTextInFiles(query, options, callback, extension.id, token);
|
||||
return extHostWorkspace.findTextInFiles(query, options || {}, callback, extension.id, token);
|
||||
},
|
||||
saveAll: (includeUntitled?) => {
|
||||
return extHostWorkspace.saveAll(includeUntitled);
|
||||
|
||||
Reference in New Issue
Block a user