mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 20:41:59 +00:00
5c4f3c0cea
Release Notes: - vim: Added a setting to control default clipboard behaviour. `{"vim": {"use_system_clipboard": "never"}}` disables writing to the clipboard. `"on_yank"` writes to the system clipboard only on yank, and `"always"` preserves the current behavior. ([#4390 ](https://github.com/zed-industries/zed/issues/4390)) --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
57 lines
1.7 KiB
TOML
57 lines
1.7 KiB
TOML
[package]
|
|
name = "vim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/vim.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-compat = { version = "0.2.1", "optional" = true }
|
|
async-trait = { workspace = true, "optional" = true }
|
|
collections.workspace = true
|
|
command_palette.workspace = true
|
|
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
|
copilot.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
itertools = "0.10"
|
|
language.workspace = true
|
|
log.workspace = true
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = [
|
|
"use_tokio",
|
|
], optional = true }
|
|
regex.workspace = true
|
|
search.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
theme.workspace = true
|
|
tokio = { version = "1.15", "optional" = true }
|
|
ui.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
schemars.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
futures.workspace = true
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
release_channel.workspace = true
|
|
indoc.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
lsp = { workspace = true, features = ["test-support"] }
|
|
parking_lot.workspace = true
|
|
project = { workspace = true, features = ["test-support"] }
|
|
settings.workspace = true
|
|
theme = { workspace = true, features = ["test-support"] }
|
|
util = { workspace = true, features = ["test-support"] }
|
|
workspace = { workspace = true, features = ["test-support"] }
|