Skip to content

Commit

Permalink
Update VS Code debugging files
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Mar 19, 2022
1 parent b43ab60 commit d9ea739
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c99",
"cppStandard": "c++11",
"intelliSenseMode": "macos-clang-x64"
"cppStandard": "c++11"
}
],
"version": 4
Expand Down
9 changes: 8 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch R ",
"name": "(lldb) Launch R",
"type": "lldb",
"request": "launch",
"program": "/Library/Frameworks/R.framework/Resources/bin/exec/R",
Expand All @@ -16,6 +16,13 @@
},
"terminal": "console",
"stopOnEntry": false
},
{
"name": "(lldb) Attach to R",
"type": "lldb",
"request": "attach",
"pid": "${command:pickMyProcess}",
"stopOnEntry": false
}
]
}
7 changes: 7 additions & 0 deletions debug/debug.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
devtools::clean_dll()
devtools::load_all()

files <- fs::dir_ls("investigations/Data", recurse = TRUE, glob = "*.XLS")
#files
read_xls(files[[1]])

0 comments on commit d9ea739

Please sign in to comment.