I have some R files containing functions I wrote. I source those files to have the functions available. If foo is my function and I type:
foo <- edit(foo)
or
fix(foo)
I can change the function and save it just for this session. How can I do the changes permanent, i.e. that they are saved in the source file? So far I am searching for the source file, edit it and then resource it, which can be annoying sometimes. I've seen it in Matlab, that "edit(function)" saves the changes in the source-file of the function.
thanks