mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 02:37:21 +00:00
d306b531c7
This PR adds the ability for extensions to implement `label_for_completion` to customize completions coming back from the language server. We've used the Gleam extension as a motivating example, adding `label_for_completion` support to it. Release Notes: - N/A --------- Co-authored-by: Max <max@zed.dev> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
17 lines
288 B
TOML
17 lines
288 B
TOML
[package]
|
|
name = "zed_gleam"
|
|
version = "0.0.2"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/gleam.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# zed_extension_api = "0.0.4"
|
|
zed_extension_api = { path = "../../crates/extension_api" }
|