tidyverse/readr

FR: Make `write_*()` return `file`

olivroy opened this issue · 0 comments

To mimic ggplot2::ggsave().

A common workflow I have when I save file to view the result is the following:

plot <- ggplot()
ggsave(plot, "file.png")
fs::file_show(.Last.value)

I wondered if this could work with readr / vroom