editors/zed/extension.toml
extension.tomlhistorycomment on this file
| 1 | id = "ents" |
| 2 | name = "ents" |
| 3 | version = "0.1.0" |
| 4 | schema_version = 1 |
| 5 | authors = ["Joseph D. Carpinelli <joseph.carpinelli@icloud.com>"] |
| 6 | description = "Projects git-ents anchored comments into Zed as code lenses, diagnostics, and hover, and composes new ones through `git ents lsp`." |
| 7 | repository = "https://github.com/git-ents/git-ents" |
| 8 | |
| 9 | [language_servers.ents-lsp] |
| 10 | name = "ents" |
| 11 | languages = [ |
| 12 | "Rust", |
| 13 | "Python", |
| 14 | "Go", |
| 15 | "C", |
| 16 | "C++", |
| 17 | "JSON", |
| 18 | "JSONC", |
| 19 | "YAML", |
| 20 | "TypeScript", |
| 21 | "TSX", |
| 22 | "JavaScript", |
| 23 | "Markdown", |
| 24 | ] |
| 25 | |
| 26 | [language_servers.ents-lsp.language_ids] |
| 27 | "Rust" = "rust" |
| 28 | "Python" = "python" |
| 29 | "Go" = "go" |
| 30 | "C" = "c" |
| 31 | "C++" = "cpp" |
| 32 | "JSON" = "json" |
| 33 | "JSONC" = "jsonc" |
| 34 | "YAML" = "yaml" |
| 35 | "TypeScript" = "typescript" |
| 36 | "TSX" = "typescriptreact" |
| 37 | "JavaScript" = "javascript" |
| 38 | "Markdown" = "markdown" |