Visual line mode handles soft wraps

This commit is contained in:
Keith Simmons 2022-05-23 09:23:25 -07:00
parent 33940b5dd9
commit 61f0daa5c5
14 changed files with 314 additions and 96 deletions

View file

@ -26,6 +26,7 @@ pub enum Operator {
Namespace(Namespace),
Change,
Delete,
Yank,
}
#[derive(Default)]
@ -80,6 +81,7 @@ impl Operator {
Operator::Namespace(Namespace::G) => "g",
Operator::Change => "c",
Operator::Delete => "d",
Operator::Yank => "y",
}
.to_owned();