Extract Prisma support into an extension (#9820)

This PR extracts Prisma support into an extension and removes the
built-in Prisma support from Zed.

Release Notes:

- Removed built-in support for Prisma, in favor of making it available
as an extension. The Prisma extension will be suggested for download
when you open a `.prisma` file.
This commit is contained in:
Marshall Bowers 2024-03-26 12:50:44 -04:00 committed by GitHub
parent 71441317bd
commit dbcff2a420
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 127 additions and 144 deletions

View file

@ -38,6 +38,7 @@ pub fn suggested_extension(file_extension_or_name: &str) -> Option<Arc<str>> {
("latex", "tex"),
("make", "Makefile"),
("nix", "nix"),
("prisma", "prisma"),
("r", "r"),
("r", "R"),
("sql", "sql"),