Thank you for the fantastic package. I tend to use it a lot with notebooks inside R projects. The only hurdle is that since my notebooks sit in, say, here('notebook'), path completion inside here::here() picks up from within here('notebook'), as opposed to here(). For instance, in the following instance, while inside here('vignettes'), path suggestion starts from within here('vigenttes')
I always add and then remove a ../ to the path to work around it. I was wondering if it can be automatically handled at least inside RStudio IDE. I understand that it might be beyond the package scope.
Thank you for the fantastic package. I tend to use it a lot with notebooks inside R projects. The only hurdle is that since my notebooks sit in, say,
here('notebook')
, path completion insidehere::here()
picks up from withinhere('notebook')
, as opposed tohere()
. For instance, in the following instance, while insidehere('vignettes')
, path suggestion starts from withinhere('vigenttes')
I always add and then remove a
../
to the path to work around it. I was wondering if it can be automatically handled at least inside RStudio IDE. I understand that it might be beyond the package scope.