mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
0bb3714435
This one has been bugging me for a while; we now know when we've wrapped a line and can join it without a line break when double-clicking to select a word. This commit introduces a wrapped attribute to help record this information, which could potentially help with when it comes to looking at nicer resize behavior in refs: https://github.com/wez/wezterm/issues/14
25 lines
444 B
TOML
25 lines
444 B
TOML
[package]
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
name = "term"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bitflags = "~1.0"
|
|
failure = "~0.1"
|
|
image = "0.21"
|
|
ordered-float = "~0.5"
|
|
unicode-segmentation = "~1.2"
|
|
unicode-width = "~0.1"
|
|
serde = {version="~1.0", features = ["rc"]}
|
|
serde_derive = "~1.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6"
|
|
|
|
[dependencies.termwiz]
|
|
path = "../termwiz"
|
|
|
|
[features]
|
|
debug-escape-sequences = []
|