We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95f4635 commit 24d6bfcCopy full SHA for 24d6bfc
src/vim.rs
@@ -134,6 +134,13 @@ impl Vim {
134
textarea.cancel_selection();
135
return Transition::Mode(Mode::Insert);
136
},
137
+ Input { key: Key::Char('a'), ctrl: false, .. } if matches!(self.mode, Mode::Operator('d')) => {
138
+ textarea.cancel_selection();
139
+ textarea.move_cursor(CursorMove::Forward);
140
+ textarea.move_cursor(CursorMove::WordBack);
141
+ textarea.start_selection();
142
+ return Transition::Nop;
143
+ },
144
Input { key: Key::Char('a'), .. } => {
145
146
textarea.move_cursor(CursorMove::Forward);
0 commit comments