Limit number of pulled in workspace symbols

Fixes #11432
This commit is contained in:
Matt Bierner 2020-03-05 13:04:37 -08:00
parent 3b38d9d8a2
commit f062556992

View file

@ -44,7 +44,8 @@ class TypeScriptWorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvide
const args: Proto.NavtoRequestArgs = {
file: filepath,
searchValue: search
searchValue: search,
maxResultCount: 256,
};
const response = await this.client.execute('navto', args, token);