ManuelHentschel / VSCode-R-Debugger

R Debugger Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=RDebugger.r-debugger
MIT License
170 stars 11 forks source link

Implement dataviewer command #128

Closed ManuelHentschel closed 3 years ago

ManuelHentschel commented 3 years ago

Fix #123

Implements a context menu command that opens the selected variable with a data viewer. By default, utils::View is used, this can be overwritten using options(vsc.dataViewer = MY_VIEWER_FUNCTION).

Edit: Currently, no error handling is implemented, I just wanted to get this working for now.