Closed cbrnr closed 1 year ago
For self-managed R sessions, it might not be very convenient to have the files located in the extension folder (e.g. /home/user/.vscode-server/extensions/reditorsupport.r-2.5.0
) since it contains the version of the extension. I think this is a main reason we keep such a folder at the moment.
I see. Could this be solved in a different way (e.g. creating a symlink if someone wants a self-managed session)? The relevant code snippet could be updated as follows:
configdir = list.files(".vscode/extensions", pattern="reditorsupport*")
if (interactive() && Sys.getenv("RSTUDIO") == "") {
source(file.path(Sys.getenv(if (.Platform$OS.type == "windows") "USERPROFILE" else "HOME"), configdir, "init.R"))
}
I think VSCode Server has a different directory name (.vscode
vs .vscode-server
).
Is there any reason to change the storage location at the risk of it not working?
My reasons are (1) it's easier to find the settings folder when it's in the standard location, and (2) I don't like applications cluttering my home directory (I know it's a hidden folder, but still). Of course these reasons might not be enough to warrant the change.
See also #495
Yes, #495 is very much related! Instead of ~/.vscode-R
, if within ~/.vscode/extensions
is not an option, you might want to consider using ~/.config/vscode-R
instead.
~/.config/vscode-R
seems to be a better place.
Folder ~/.vscode-R
is according to requirements – at least for Unix-like operating systems. Nothing wrong with that.
Should this folder be abandoned, do not hard-code ~/.config/vscode-R
but follow the guidelines as outlined in https://github.com/REditorSupport/vscode-R/issues/495#issue-765236660 by @LiteracyFanatic.
This issue is stale because it has been open for 365 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.
A backwards compatible change would be to use the XDG locations if they exist (ie, use XDG_CONFIG_HOME/vscode-R/
or fall back to ~/.config/vscode-R/
). If neither of those exist, move ~/.vscode-R
(if it exists) to XDG_CONFIG_HOME/vscode-R
. Of course if the XDG_CONFIG_HOME
variable is not set it would fall back to use ~/.config/vscode-R
as new default behaviour.
Regarding @benz0li's comment, it is worthy to note that the linked spec explicitly mentions and links to the XDG specification and the Glib conventions, here in the GNOME documentation which also use the XDG spec.
Somewhat related, the wakatime-cli family of extensions are trying to migrate, too. Issue on the main project, the jetbrains extension and the vim extension
Off-topic, but I do not see the value of auto-closing issues. That's like automically tagging it wontfix
. An unhandled issue is not intrinsically less worthy than a new issue simply by nature of being older. If this does not reopen it, I will open another one to continue this conversation unless asked not to by a mantainer.
Edit: weird. I was pretty sure the stale-bot would reopen the issue by its default settings
I also find this quite annoying and would love for XDG conventions to be respected. Ideally an environment variable would specify the path, followed by XDG conventions, followed by ~/.vscode-R. This would let those of use who manage our dotfiles carefully set the location explicitly.
Describe the bug Extension settings are usually located in
~/.vscode/extensions
. However, the settings for this extension are stored in~/.vscode-R
.To Reproduce Here's an example of my setup, all extensions store their settings under
.vscode
:This does not include
vscode-R
, which has its own folder in my home:I could try to fix this if people agree this is a bug.
Expected behavior I expected the settings of
vscode-R
to be in the standard location under~/.vscode/extensions
.Environment (please complete the following information):