Open jewellsean opened 6 years ago
Sourced files fail to refactor during file name renaming. For example, suppose we source("utils.R") and rename utils.R to the more informative name data_utils.R. Then source("utils.R") fails to update to source("data_utils.R").
source("utils.R")
utils.R
data_utils.R
source("data_utils.R")
Sourced files fail to refactor during file name renaming. For example, suppose we
source("utils.R")
and renameutils.R
to the more informative namedata_utils.R
. Thensource("utils.R")
fails to update tosource("data_utils.R")
.