1
0

修复配置,增加Rmd示例,更新说明

This commit is contained in:
Steven Hobs
2025-08-20 17:11:49 +08:00
parent ad8ef460d6
commit 8bb040371d
5 changed files with 81 additions and 12 deletions

16
.vscode/settings.json vendored
View File

@@ -1,12 +1,15 @@
/* VSCode */
{
"r.rpath.linux": "${workspaceFolder}/.conda/bin/R",
"terminal.integrated.env.linux": {
"R_HOME": "${workspaceFolder}/.conda/lib/R",
},
"r.rpath.linux": ".conda/bin/R",
"r.rterm.linux": "${workspaceFolder}/.conda/bin/radian",
"r.rterm.option": [
"--no-save",
"--no-restore",
"--r-binary=${workspaceFolder}/.conda/bin/R"
"--ask-save"
],
"r.debugger.commandLineArgs": [],
"r.debugger.checkVersion": "recommended",
"r.plot.useHttpgd": true,
"r.lsp.diagnostics": true,
"r.alwaysUseActiveTerminal": true,
@@ -20,8 +23,9 @@
"editor.defaultFormatter": "REditorSupport.r",
"editor.formatOnSave": true
},
// "terminal.integrated.defaultProfile.linux": "R Terminal", # 终端默认开启 R终端
"files.eol": "\n",
"editor.tabSize": 2,
"editor.detectIndentation": false
"editor.detectIndentation": false,
"remote.autoForwardPorts": false,
// "terminal.integrated.defaultProfile.linux": "R Terminal", // 终端默认开启 R终端
}