how to change paths in whole project vscode code example
Example 1: vscode search in folder
concatMap(rootTemplate =>
this.templateEngine.getAllChildTemplates(rootTemplate).pipe(
map(childTemplates => [rootTemplate, childTemplates])
)
),
concatMap(([rootTemplate, childTemplates]) =>
this.templateEngine.createTemplateToRender(childTemplates, rootTemplate)
)
Example 2: how to save files in a repository visual studio code
def fib(number):
if number in [0, 1]:
return 1
else:
return fib(number - 2) + fib(number - 1)