mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-04 07:29:32 +00:00
25981550d5
This PR extracts Deno support into an extension and removes the built-in Deno support from Zed. When using the Deno extension, you'll want to add the following to your settings to disable the built-in TypeScript and ESLint language servers so that they don't conflict with Deno's functionality: ```json { "languages": { "TypeScript": { "language_servers": ["deno", "!typescript-language-server", "!eslint", "..."] }, "TSX": { "language_servers": ["deno", "!typescript-language-server", "!eslint", "..."] } } } ``` Release Notes: - Removed built-in support for Deno, in favor of making it available as an extension.
13 lines
509 B
TOML
13 lines
509 B
TOML
id = "deno"
|
|
name = "Deno"
|
|
description = "Deno support."
|
|
version = "0.0.1"
|
|
schema_version = 1
|
|
authors = ["Lino Le Van <11367844+lino-levan@users.noreply.github.com>"]
|
|
repository = "https://github.com/zed-industries/zed"
|
|
|
|
[language_servers.deno]
|
|
name = "Deno Language Server"
|
|
languages = ["TypeScript", "TSX", "JavaScript", "JSDoc"]
|
|
language_ids = { "TypeScript" = "typescript", "TSX" = "typescriptreact", "JavaScript" = "javascript" }
|
|
code_action_kinds = ["quickfix", "refactor", "refactor.extract", "source"]
|