The View command is for a small sub window. You can easily view the full value in the console window. If you want to have the same layout, use cbind.
cbind(rstudio)
which actually even gives you the same beautiful line numbering setting
And if it's too bulky
pview <- function(x, rows=100) { if (length(x) > rows) print(cbind(x)) else print(cbind(head(x, rows/2))) print(cbind(tail(x, rows/2))) } pview(rstudio, 1998)
you will need to clear this to get the line names in the ruler
source share