Skip to content

Commit c4d3a12

Browse files
committed
prerelease 2.1.0
1 parent adec717 commit c4d3a12

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@
44

55
You can check all of our changes from [Release Page](https://github.com/REditorSupport/vscode-R/releases)
66

7+
## [2.1.0](https://github.com/REditorSupport/vscode-R/releases/tag/v2.1.0)
8+
9+
Important changes
10+
11+
* The project is migrated to [REditorSupport](https://github.com/REditorSupport) organization on
12+
GitHub. (#98)
13+
* The R language service (completion, document outline, definition, etc.,
14+
formerly implemented in [vscode-r-lsp](https://github.com/REditorSupport/vscode-r-lsp)) is now
15+
integrated into vscode-R (#695). The vscode-r-lsp extension will be unpublished from the
16+
VS Code marketplace
17+
at some point.
18+
* Search `r-lsp` extension, uninstall it and vscode-R will start the R langauge service
19+
automatically.
20+
* The language service still depends on the R package [`languageserver`](https://github.com/REditorSupport/languageserver). Make sure the package is installed before using vscode-R.
21+
* To opt-out the language service, set `"r.lsp.enabled": false` in your user settings.
22+
* R session watcher is now enabled by default. (#670)
23+
* `r.previewDataframe` and `r.previewEnvironment` will use the session watcher if enabled.
24+
* To opt-out, set `"r.sessionWatcher": false` in your user settings.
25+
26+
New Features
27+
28+
* Preview R Markdown documents via background process with auto-refresh and dark theme support. (#692, #699)
29+
30+
Enhancements
31+
32+
* Several enhancements of the workspace viewer. (#672)
33+
* The plot viewer now supports customizable CSS file via `r.plot.customStyleOverwrites` and
34+
`r.plot.togglePreviewPlots` now cycles through mutlirow/scroll/hidden. (#678, #681)
35+
* The data viewer is now based on [ag-grid](https://github.com/ag-grid/ag-grid) with better performance and better support for filtering and dark theme. (#708)
36+
* The data viewer might not work with existing R sessions started before the extension update.
37+
A restart of sessions is needed to use the new data viewer.
38+
* Command `r.showPlotHistory` is removed in favor of the httpgd-based plot viewer. (#706)
39+
* The plot viewer now supports full window mode. (#709)
40+
41+
Fixes
42+
43+
* LiveShare API bug fix and enhancements. (#679)
44+
* Fix syntax highlighting of integers in scientific notation. (#683)
45+
746
## [2.0.0](https://github.com/REditorSupport/vscode-R/releases/tag/v2.0.0)
847

948
Highlight

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "r",
33
"displayName": "R",
4-
"description": "R language support (run, snippet, viewer)",
5-
"version": "2.0.0",
4+
"description": "R Extension for Visual Studio Code",
5+
"version": "2.1.0",
66
"author": "REditorSupport",
77
"license": "SEE LICENSE IN LICENSE",
88
"publisher": "Ikuyadeu",

0 commit comments

Comments
 (0)