Changing the behavior of `View` in the .Rprofile?

30 views Asked by At

Per my previous question I want to add this statement to my .rprofile to change the behavior of View:

View = purrr::partial(View, title = ".")

However this statement causes an error, I think because my .rprofile loads before utils does, so I am instead trying

View = purrr::partial(utils::View, title = ".")

which does not cause an error but is not working as expected. How can I give the View function a default argument for title?

0

There are 0 answers