zed/extensions/snippets/Cargo.toml
Piotr Osiewicz 9bdb154a9b
snippets: Read user settings for workspace configuration (#13356)
Fixes #13334

Use `settings` field in `lsp` subsettings to fix up the settings as
wish:
```
  "lsp": {
    "snippet-completion-server": {
      "settings": {
        "max_completion_items": 20, 
        "snippets_first": false,
        "feature_words": true,
        "feature_snippets": true,
        "feature_paths": true,
        "feature_unicode_input": false
      }
    }
  }
```


Release Notes:

- N/A
2024-06-21 12:44:19 +02:00

18 lines
251 B
TOML

[package]
name = "zed_snippets"
version = "0.0.4"
edition = "2021"
publish = false
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "src/snippets.rs"
crate-type = ["cdylib"]
[dependencies]
zed_extension_api = "0.0.6"
serde_json = "1.0"