how to search in vscode code example
Example 1: how to search for imports in vscode
so this lets you find all the places a component or package is imported. You jsut do a shift+cmd+F, then click the regex search option, then type import(.*)YourComponentName
Example 2: vscode search in folder
concatMap(rootTemplate =>
this.templateEngine.getAllChildTemplates(rootTemplate).pipe(
map(childTemplates => [rootTemplate, childTemplates])
)
),
concatMap(([rootTemplate, childTemplates]) =>
this.templateEngine.createTemplateToRender(childTemplates, rootTemplate)
)