How to disable “Save workspace image?” prompt in R?

前端 未结 11 1841
迷失自我
迷失自我 2020-11-29 23:51

When I exit the interactive R shell, it displays an annoying prompt every time:

>
>
Save workspace image? [y/n/c]: n

I\'m always answering \"no\" to it

11条回答
  •  醉梦人生
    2020-11-29 23:57

    You can pass the --no-save command line argument when you start R, or you can override the q function:

    utils::assignInNamespace(
      "q", 
      function(save = "no", status = 0, runLast = TRUE) 
      {
        .Internal(quit(save, status, runLast))
      }, 
      "base"
    )
    

    Put the above code in your .Rprofile so it will be run on startup for every session.

提交回复
热议问题