mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
26d0a33e79
Vim digraphs are a way to insert special characters using sequences of two ASCII characters. I've implemented the feature using a new `Digraph` operator, following the example of `AddSurrounds`. There are still a few issues that I'm not sure what the best way to resolve them is. - To insert `ş`, the user must pause between pressing `ctrl-k` and `s ,`, otherwise it triggers the binding for `ctrl-k s`. Is there a way to disable `ctrl-k *` bindings while in insert, replace or waiting mode? - Is there a better way to insert a string at all of the cursors? At the moment I'm constructing the edits manually. - The table of default digraphs is a 1.4k line rust expression. Is this okay as long as it's in its own module? - I'd like a second opinion on how best to structure the settings.json entry. - I have omitted the "meta character" feature as I don't think it makes sense when editing UTF-8 text. Release Notes: - Added support for Vim digraphs. Resolves #11871
60 lines
1.6 KiB
TOML
60 lines
1.6 KiB
TOML
[package]
|
|
name = "vim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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_hooks.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
itertools.workspace = true
|
|
language.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
multi_buffer.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
|
|
tokio = { version = "1.15", "optional" = true }
|
|
ui.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
schemars.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
command_palette.workspace = true
|
|
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
|
|
settings.workspace = true
|
|
util = { workspace = true, features = ["test-support"] }
|
|
workspace = { workspace = true, features = ["test-support"] }
|