Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .gitignore

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we remove some of those that are not needed and make it a bit more barebones?

Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,32 @@
grammars/
target/
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

target/
grammars/
extension.wasm
329 changes: 329 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "sql"
version = "1.1.2"
edition = "2024"

[lib]
crate-type = ["cdylib"]

[dependencies]
zed_extension_api = "0.2.0"
6 changes: 5 additions & 1 deletion extension.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ id = "sql"
name = "SQL"
schema_version = 1
version = "1.1.7"
authors = ["nervenes", "notpeter", "phileix", "tammyxiong"]
authors = ["nervenes", "notpeter", "phileix", "tammyxiong", "valentinegb"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
authors = ["nervenes", "notpeter", "phileix", "tammyxiong", "valentinegb"]
authors = ["nervenes", "notpeter", "phileix", "tammyxiong"]

They mentioned someone can take this over - we appreciate their work and already send them a little goodie for everything they did some time ago, but think let's leave them out here in their interest, please.

description = "SQL language support."
repository = "https://github.com/zed-extensions/sql"

[grammars.sql]
repository = "https://github.com/DerekStride/tree-sitter-sql"
commit = "4a99c73f5384f2be10adc55208c84d95a7eb1137"

[language_servers.sqls]
name = "sqls"
languages = ["SQL"]
Loading