Add CQL (Cassandra Query Language) as its own language#7720
Merged
lildude merged 12 commits intogithub-linguist:mainfrom Jan 12, 2026
Merged
Add CQL (Cassandra Query Language) as its own language#7720lildude merged 12 commits intogithub-linguist:mainfrom
lildude merged 12 commits intogithub-linguist:mainfrom
Conversation
Member
|
The ArkTS grammar issue is being addressed by the revert in #7737. The license cache issue for your grammar is because you updated the submodule but not the cached license file. You can fix this by running: |
Contributor
Author
Done |
github-merge-queue Bot
pushed a commit
to zed-industries/extensions
that referenced
this pull request
Feb 8, 2026
## PR Summary
> [!TIP]
> Release v3.0.0 contains breaking changes involving language server
</br>
> Since v3.0.0 binary name was renamed to `cqlls`
> ```rs
> impl CqlLspExtension {
> fn get_path_to_language_server_executable()
> ...
> let binary_name = "cqlls";
> ```
> New crates.io [entry](https://crates.io/crates/cqlls) <br>
> ```sh
> cargo install cqlls
> ```
## Changes:
- **Extension**: binary name changed to cqlls
- **Language Server**: [Insert
Preview](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#inset-preview
)
- **Language Server**: [INSERT INTO
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#inset-formatting
)
- **Language Server**: [CREATE AGGREGATE
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#caggregate-formatting)
- **Language Server**: [CREATE FUNCTION
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#cfunc-formatting)
- **Language Server**: [ALTER TABLE
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#alter-table-formatting)
- **Language Server**: [TLS
connections](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#tls)
- **Language Server**: [Non-UTF8
support](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#utf8)
- **Github** [CQL as it's own
language](github-linguist/linguist#7720)
## Issues Fixed
- [Support indentation for
INSERT](Akzestia/cqlls#30)
- [Support TLS connection](Akzestia/cqlls#31)
- [UTF-16 && UTF-32 Causing Language Server to
panic](Akzestia/cqlls#32)
- [Support indentation for CREATE
AGGREGATE](Akzestia/cqlls#37)
- [Support indentation for CREATE
FUNCTION](Akzestia/cqlls#38)
- [Support indentation for ALTER
TABLE](Akzestia/cqlls#39)
Full release
[notes](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0) for
language server.
cramhead
pushed a commit
to cramhead/extensions
that referenced
this pull request
Mar 31, 2026
## PR Summary
> [!TIP]
> Release v3.0.0 contains breaking changes involving language server
</br>
> Since v3.0.0 binary name was renamed to `cqlls`
> ```rs
> impl CqlLspExtension {
> fn get_path_to_language_server_executable()
> ...
> let binary_name = "cqlls";
> ```
> New crates.io [entry](https://crates.io/crates/cqlls) <br>
> ```sh
> cargo install cqlls
> ```
## Changes:
- **Extension**: binary name changed to cqlls
- **Language Server**: [Insert
Preview](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#inset-preview
)
- **Language Server**: [INSERT INTO
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#inset-formatting
)
- **Language Server**: [CREATE AGGREGATE
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#caggregate-formatting)
- **Language Server**: [CREATE FUNCTION
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#cfunc-formatting)
- **Language Server**: [ALTER TABLE
formatting](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#alter-table-formatting)
- **Language Server**: [TLS
connections](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#tls)
- **Language Server**: [Non-UTF8
support](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0#utf8)
- **Github** [CQL as it's own
language](github-linguist/linguist#7720)
## Issues Fixed
- [Support indentation for
INSERT](Akzestia/cqlls#30)
- [Support TLS connection](Akzestia/cqlls#31)
- [UTF-16 && UTF-32 Causing Language Server to
panic](Akzestia/cqlls#32)
- [Support indentation for CREATE
AGGREGATE](Akzestia/cqlls#37)
- [Support indentation for CREATE
FUNCTION](Akzestia/cqlls#38)
- [Support indentation for ALTER
TABLE](Akzestia/cqlls#39)
Full release
[notes](https://github.com/Akzestia/cqlls/releases/tag/v2.0.0) for
language server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduced separate grammar for CQL.
https://github.com/search?q=cql&type=repositories
#006091Example highlights: