ZIP
WinGet
Air
Posit Software, PBC · 0.5.0 · x64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
air-x86_64-pc-windows-msvc.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
Posit.Air
Version
0.5.0
Description
R formatter and language server
License
MIT
↗
Homepage
https://github.com/posit-dev/air
Installer URL
https://github.com/posit-dev/air/releases/download/0.5.0/air-x86_64-pc-windows-msvc.zip
Upgrade Behavior
install(Install over existing)
Release Notes
Release Notes
- Added support for a skip field in air.toml (#273).
This is an extension of the # fmt: skip comment feature that provides a single place for you to list functions you never want formatting for. For example:
skip = ["tribble", "graph_from_literal"]
This skip configuration would skip formatting for these function calls, even without a # fmt: skip comment:
tribble(
~x, ~y,
1, 2,
3, 4
)
igraph::graph_from_literal(A +-+ B +---+ C ++ D + E)
We expect this t…