Hi, I need to find a file in Rstudio file pane. I know the name of the file but I do not want to scroll down to it, as a list of files is very long. Is it a way or keyboard shortcut to find it faster like Ctrl-s in Total Commander, that opens a small window facilitating to starting to write down a name of the file and it pop ups immediately.
I found this but it seems a bit complicated: https://cran.rstudio.com/web/packages/rprojroot/vignettes/rprojroot.html
And I have read this, looks like in 2018 it was a feature request ? https://community.rstudio.com/t/fr-click-to-enter-path-in-files-pane/6774/5
kind regards, Andrzej
Do you just want to open the file? You could do this:
file.edit('your_file.R')
There are the fs, base or shell functions too:
fs
base
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.