Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ options(vsc.page_viewer = "Active" | "Beside" | "Two" | FALSE)
# Use FALSE for R's native View(), which should be specified in .Rprofile
# since it only takes effect on session startup.
options(vsc.view = "Two" | "Active" | "Beside" | FALSE)

# Which view column to show the WebView triggered by help panel
# (e.g. after sending `?mean` to terminal)?
# Use FALSE to disable help panel and revert to old behaviour.
options(vsc.helpPanel = "Two" | "Active" | "Beside" | FALSE)
```

The first values are the default and all subsequent values after `|` are available choices.
Expand All @@ -187,7 +192,7 @@ The `"Two" | "Active" | "Beside"` are popular values from `ViewColumn` to specif

The session watcher allows RStudio addins to be executed via an `{rstudioapi}` emulation layer.

To enable this feature, set `options(vsc.rstudioapi = TRUE)` in your .Rprofile.
Copy link
Copy Markdown
Contributor Author

@kar9222 kar9222 Nov 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't know about this when I edited the README.md. This was done automatically by VSCode with my settings.json editor.trimAutoWhitespace: true

To enable this feature, set `options(vsc.rstudioapi = TRUE)` in your .Rprofile.

The extension provides the command `r.launchAddinPicker` which opens a filterable list of installed addins that can be launched. Bind this to a key, or access it from the command palette as `R: Launch RStudio Addin`.

Expand Down