vim-line 7.7.2

A line-oriented vim motions library for TUI applications
Documentation
[package]
name = "vim-line"
description = "A line-oriented vim motions library for TUI applications"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
documentation.workspace = true
repository.workspace = true
readme = "README.md"
keywords = ["vim", "editor", "tui", "line-editor"]
categories = ["text-editors", "command-line-utilities"]

[features]
# Default-off so the core stays I/O-free and zero-dep for hosts that only
# need the line editor.
default = []
# Opt-in command-history store (see `vim_line::history`). Hosts wanting
# `prev`/`next`/`search`/draft-stash flip this on; arrow / `j` / `k`
# keymap behavior is unchanged either way — only the store availability
# differs.
history = []

[dependencies]
# Intentionally minimal - this crate should be self-contained

[dev-dependencies]