Skip to content

Commit e4b7216

Browse files
authored
Merge pull request #1217 from harehare/feat/support-zed
✨ feat: add Zed editor extension
2 parents 22fa989 + d64e5d4 commit e4b7216

File tree

14 files changed

+624
-5
lines changed

14 files changed

+624
-5
lines changed

Cargo.lock

Lines changed: 228 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ members = [
1414
"crates/mq-web-api",
1515
"crates/mq-dap",
1616
"crates/mq-crawler",
17+
"editors/zed",
1718
]
1819
resolver = "3"
1920

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Takahiro Sato
3+
Copyright (c) 2026 Takahiro Sato
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "https://github.com/harehare/mq.git"
1717
},
1818
"galleryBanner": {
19-
"color": "#123850",
19+
"color": "#2a3444",
2020
"theme": "dark"
2121
},
2222
"keywords": [

editors/zed/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
grammars/*
2+
extension.wasm

editors/zed/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
edition = "2024"
3+
name = "zed-mq"
4+
version = "0.1.0"
5+
6+
[lib]
7+
crate-type = ["cdylib"]
8+
9+
[dependencies]
10+
zed_extension_api = "0.7.0"

0 commit comments

Comments
 (0)