|
4 | 4 |
|
5 | 5 | # Formalist — Positron Extension |
6 | 6 |
|
7 | | -This is an extension to help add explicit R function calls instead of implicit ones using the [`{pedant}`](https://github.com/wurli/pedant) R package. In other words, it checks the currently attached packages, i.e., the ones already loaded using `library()`, and transforms R function calls like `select(mtcars, mpg, cyl)` to `dplyr::select(mtcars, mpg, cyl)`. |
8 | | - |
9 | 7 | > ⚠ The extension is designed to work ONLY in |
10 | 8 | > [Positron](https://github.com/posit-dev/positron) IDE starting from version 2025.01.0, as it heavily depends |
11 | 9 | > on the Positron API. |
| 10 | +> |
| 11 | +> ⏰ It will be published on the Open VSX Registry soon. |
| 12 | +
|
| 13 | +This is an extension to help add explicit R function calls instead of implicit ones using the [`{pedant}`](https://github.com/wurli/pedant) R package. In other words, it checks the currently attached packages, i.e., the ones already loaded using `library()`, and transforms R function calls like `select(mtcars, mpg, cyl)` to `dplyr::select(mtcars, mpg, cyl)`. |
12 | 14 |
|
13 | 15 |  |
14 | 16 |
|
15 | 17 | # Installation |
16 | 18 |
|
17 | | -The extension is published on the [Open VSX Registry](https://open-vsx.org/extension/atsyplenkov/formalist): just click `Install` there or manually install it with: |
| 19 | +~~The extension is published on the [Open VSX Registry](https://open-vsx.org/extension/atsyplenkov/formalist): just click `Install` there or manually install it with:~~ |
18 | 20 |
|
19 | | -1) Start the [Positron](https://github.com/posit-dev/positron). |
| 21 | +~~1) Start the [Positron](https://github.com/posit-dev/positron).~~ |
20 | 22 |
|
21 | | -2) Inside Positron, go to the extensions view either by executing the `View: Show Extensions` command (click View -> Command Palette...) or by clicking on the extension icon on the left side of the Positron window. |
| 23 | +~~2) Inside Positron, go to the extensions view either by executing the `View: Show Extensions` command (click View -> Command Palette...) or by clicking on the extension icon on the left side of the Positron window.~~ |
22 | 24 |
|
23 | | -3) In the extensions view, simply search for the term `formalist` in the marketplace search box, then select the extension named `Formalist` and click the install button. |
| 25 | +~~3) In the extensions view, simply search for the term `formalist` in the marketplace search box, then select the extension named `Formalist` and click the install button.~~ |
24 | 26 |
|
25 | 27 | Alternatively, you can install the latest version from the [Releases](https://github.com/atsyplenkov/formalist/releases/) page. Download the latest `.vsix` file and install it as described [here](https://code.visualstudio.com/docs/editor/extension-marketplace#_install-from-a-vsix). |
26 | 28 |
|
|
0 commit comments