How Positron projects work; how they differ from RStudio projects; how they differ from Code OSS / VScode folders #5425
-
In RStudio, a project is basically a folder with a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Thanks for the question @mark-andrews! Writing some better documentation about workspaces/folders/projects is one of the items we have outlined in #4157 and it's helpful to know the relative importance of this problem. In some ways, the situation in Positron is simpler than RStudio; no special files! Positron workspaces are most similar to VS Code/Code OSS workspaces, and are approximately the same conceptually as an RStudio project except with no The "Workspaces: New Project" command creates a new workspace; we've used the word "project" here to try to indicate that this isn't quite the same as "Workspaces: New Folder" (this New Project Wizard will set up certain files and, for example, a Python venv for you) but we understand it is confusing. We have #4787 where we are thinking about how to be more clear in our use of these terms. You are correct that the New Project Wizard in Positron will only create an entirely new directory and will not make changes to an existing directory. If you have an existing directory you want to work in, just go ahead and open it up; it is then a Positron workspace (no need to go through the New Project Wizard or explicitly make it a workspace/project). |
Beta Was this translation helpful? Give feedback.
-
Hi @juliasilge Thanks a lot for the explanation. |
Beta Was this translation helpful? Give feedback.
Thanks for the question @mark-andrews! Writing some better documentation about workspaces/folders/projects is one of the items we have outlined in #4157 and it's helpful to know the relative importance of this problem.
In some ways, the situation in Positron is simpler than RStudio; no special files! Positron workspaces are most similar to VS Code/Code OSS workspaces, and are approximately the same conceptually as an RStudio project except with no
.Rproj
file, and all of these align in most cases with a literal folder.The "Workspaces: New Project" command creates a new workspace; we've used the word "project" here to try to indicate that this isn't quite the same as "Workspaces: New Fold…