1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- // 使用 IntelliSense 了解相关属性。
- // 悬停以查看现有属性的描述。
- // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "R-Debugger",
- "name": "Launch R-Workspace",
- "request": "launch",
- "debugMode": "workspace",
- "workingDirectory": "${workspaceFolder}"
- },
- {
- "type": "R-Debugger",
- "name": "Debug R-File",
- "request": "launch",
- "debugMode": "file",
- "workingDirectory": "${workspaceFolder}",
- "file": "${file}"
- },
- {
- "type": "R-Debugger",
- "name": "Debug R-Function",
- "request": "launch",
- "debugMode": "function",
- "workingDirectory": "${workspaceFolder}",
- "file": "${file}",
- "mainFunction": "main",
- "allowGlobalDebugging": false
- },
- {
- "type": "R-Debugger",
- "name": "Debug R-Package",
- "request": "launch",
- "debugMode": "workspace",
- "workingDirectory": "${workspaceFolder}",
- "includePackageScopes": true,
- "loadPackages": [
- "."
- ]
- },
- {
- "type": "R-Debugger",
- "request": "attach",
- "name": "Attach to R process",
- "splitOverwrittenOutput": true
- }
- ]
- }
|