VSCODE FIND through all files code example
Example 1: visual studio code shortcut replace all
Ctrl+Shift+H
// Type new word
Ctrl+Alt+Enter
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)
)