Problem
Currently using walk, which is inefficient as we're traversing all the nested folders and files within the ones specified in ~/.cig.yaml.
Solution
Recursively search the folders up to a predetermined depth (say 5 for example) which can be overridden from the command line, for example:
$: cig -t work -d 10
Problem
Currently using walk, which is inefficient as we're traversing all the nested folders and files within the ones specified in
~/.cig.yaml.Solution
Recursively search the folders up to a predetermined depth (say
5for example) which can be overridden from the command line, for example:$: cig -t work -d 10