Visual line mode handles soft wraps
This commit is contained in:
parent
33940b5dd9
commit
61f0daa5c5
14 changed files with 314 additions and 96 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue