Debugger is missing 🥲 #5255
-
Hi, I am quite confused now with the debugger pane, and how I should set that up, but currently it is missing (picture) and I cannot find the solution to that. I believe I should add a custom debugger, but the R debugger extension is banned, with the message "Cannot install the 'R' extension because it conflicts with Positron built-in features.". How am I supposed to fix this issue? Thanks 🙏 in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Use In the future we will let you set breakpoints directly in the file but that doesn't work yet. So, like: library(dplyr)
debugonce(mutate)
mutate(mtcars, x = mpg + cyl) |
Beta Was this translation helpful? Give feedback.
Use
debug()
ordebugonce()
on the function of interest, or insert abrowser()
statement directly into the function of interest.In the future we will let you set breakpoints directly in the file but that doesn't work yet.
So, like: