Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft Zed extension for Air #195

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions editors/zed/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
extension.wasm
329 changes: 329 additions & 0 deletions editors/zed/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions editors/zed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "zed_air"
version = "0.1.0"
edition = "2021"
publish = false
license = "MIT"

[lib]
path = "src/air.rs"
crate-type = ["cdylib"]

[dependencies]
zed_extension_api = "0.1.0"

# Empty `[workspace]` table to keep this separate from the air workspace,
# even though the folder structure is nested
[workspace]
11 changes: 11 additions & 0 deletions editors/zed/extension.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
id = "air"
name = "Air"
description = "Air extension for Zed"
version = "0.1.0"
schema_version = 1
authors = []
repository = "https://github.com/posit-dev/air"

[language_servers.air]
name = "Air"
languages = ["R"]
Loading
Loading