mirror of https://github.com/helix-editor/helix
Implement missing Debug and update Cargo.lock
parent
7cc13fefe9
commit
9887b1275a
|
@ -266,7 +266,7 @@ dependencies = [
|
||||||
"toml",
|
"toml",
|
||||||
"tree-sitter",
|
"tree-sitter",
|
||||||
"unicode-general-category",
|
"unicode-general-category",
|
||||||
"unicode-segmentation",
|
"unicode-segmentation 1.7.1 (git+https://github.com/unicode-rs/unicode-segmentation.git)",
|
||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -332,7 +332,7 @@ dependencies = [
|
||||||
"cassowary",
|
"cassowary",
|
||||||
"crossterm",
|
"crossterm",
|
||||||
"serde",
|
"serde",
|
||||||
"unicode-segmentation",
|
"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -991,6 +991,11 @@ version = "1.7.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
|
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-segmentation"
|
||||||
|
version = "1.7.1"
|
||||||
|
source = "git+https://github.com/unicode-rs/unicode-segmentation.git#58d73acf0e92f9806619fa79c3138dd410bca216"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-width"
|
name = "unicode-width"
|
||||||
version = "0.1.8"
|
version = "0.1.8"
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/// This is a kind a of specialized `Option<char>` for register selection.
|
/// This is a kind a of specialized `Option<char>` for register selection.
|
||||||
/// Point is to keep whether the register selection has been explicitely
|
/// Point is to keep whether the register selection has been explicitely
|
||||||
/// set or not while being convenient by knowing the default register name.
|
/// set or not while being convenient by knowing the default register name.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct RegisterSelection {
|
pub struct RegisterSelection {
|
||||||
selected: char,
|
selected: char,
|
||||||
default_name: char,
|
default_name: char,
|
||||||
|
|
Loading…
Reference in New Issue