hyprcorrect-ui 0.2.3

egui preferences window and suggestion popup for hyprcorrect.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
//! A small, self-contained vim-style modal editor for the review
//! popup's sentence edit mode (`Ctrl+E`). It is a *subset* of vim —
//! enough to fix a wrong correction quickly with the motions and
//! operators muscle memory expects — not a vim emulator.
//!
//! The state machine here is deliberately egui-free and pure so it can
//! be unit-tested by feeding [`VimKey`] sequences and asserting on the
//! resulting text/cursor/mode (the same testing style as
//! `hyprcorrect_core::buffer`). The popup ([`crate::review`]) owns the
//! egui rendering and translates egui key events into [`VimKey`]s.
//!
//! ## Supported (v1)
//! - Modes: NORMAL, INSERT, COMMAND (`:`).
//! - Enter INSERT: `i a I A o O`; leave with `Esc` (cursor steps left,
//!   vim-style).
//! - Motions (also operator targets): `h l w b e 0 ^ $ j k G`, `gg`,
//!   Home/End, and the arrow keys; `virtualedit`-style end-of-line access
//!   and column-keeping `j`/`k`.
//! - Edits: `x`, `r{char}`, `s`, `S`, `D`, `C`, `dd`, `cc`.
//! - Operator + motion / text object: `d{m}` and `c{m}` over
//!   `w b e h l 0 ^ $`; `diw ciw daw caw` (with the vim `cw`==`ce`
//!   special case).
//! - Leading counts: e.g. `3x`, `2w`, `2dw`.
//! - Undo `u`, redo `Ctrl+R` (one step per change / per insert session),
//!   and repeat `.` (replays the last change's keystrokes).
//! - COMMAND: `:w :wq :x` (+ `!`/`a` variants) submit; `:q :q!` cancel;
//!   normal-mode `Enter` submits; INSERT `Enter` inserts a newline.
//!
//! ## Out of scope (v1)
//! Registers/yank/paste, visual mode, marks, search (`/`), ex ranges, and
//! `.`/count composition beyond a single recorded change — documented as
//! non-goals in `DESIGN.md`.

/// A key handed to the editor. The popup maps egui events to these;
/// the machine never sees egui types.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum VimKey {
    Char(char),
    Esc,
    Enter,
    Backspace,
    Left,
    Right,
    Up,
    Down,
    Home,
    End,
    /// `Ctrl+R` — redo.
    Redo,
}

/// What the popup should do after a key — most keys are [`None`].
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum VimOutcome {
    /// Keep editing.
    None,
    /// Apply the (possibly edited) text and close — `:w`/`:wq`/`:x` or
    /// normal-mode `Enter`.
    Submit,
    /// Discard and close — `:q`/`:q!`, or `Esc` in NORMAL mode.
    Cancel,
    /// `z=` — the popup should show spelling suggestions for the word
    /// under the cursor.
    SpellSuggest,
}

/// The current editing mode, for the status line / cursor shape.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Mode {
    Normal,
    Insert,
    Command,
}

/// A vim-subset modal editor over a single owned [`String`] (which may
/// grow multiple lines once the user inserts newlines).
#[derive(Debug)]
pub struct VimEdit {
    text: String,
    /// Byte offset into `text`; always a char boundary. With
    /// virtualedit the NORMAL-mode caret may sit at end-of-line (one
    /// past the last char), like INSERT mode.
    cursor: usize,
    /// Desired visual column (chars from line start) for vertical
    /// motion — vim's `curswant`. `j`/`k` aim for this column so moving
    /// down through a short line and back up restores the column.
    vcol: usize,
    mode: Mode,
    /// The `:`-command being typed (includes the leading `:`), valid
    /// only in [`Mode::Command`].
    cmdline: String,
    /// A transient status message (e.g. an unknown-command error),
    /// shown until the next NORMAL key.
    status: Option<String>,

    // --- pending NORMAL-mode parser state ---
    count: Option<usize>,
    /// A pending operator: `'d'` or `'c'`.
    op: Option<char>,
    /// `r` was pressed; the next char is the replacement.
    await_r: bool,
    /// `g` was pressed; expecting a second `g`.
    await_g: bool,
    /// `z` was pressed; expecting `=` (spell-suggest).
    await_z: bool,
    /// After an operator, `i`/`a` was pressed; expecting `w`.
    await_textobj: Option<char>,

    // --- undo / redo / repeat ---
    /// `(text, cursor)` snapshots, one per change; `u` pops.
    undo: Vec<(String, usize)>,
    /// Snapshots popped by `u`, restored by `Ctrl+R`.
    redo: Vec<(String, usize)>,
    /// True once the current command has taken its undo snapshot, so a
    /// multi-key change (and a whole insert session) is one undo step.
    change_open: bool,
    /// Keys of the command currently being entered, and of the last
    /// change (for `.`).
    cur: Vec<VimKey>,
    dot: Vec<VimKey>,
    /// Whether `cur` so far has modified text (a real change worth
    /// recording for `.`).
    cur_is_change: bool,
    /// True while replaying `.` — suppresses re-recording.
    replaying: bool,
}

impl VimEdit {
    /// Create an editor over `text`, placing the NORMAL-mode cursor at
    /// (or just before) byte offset `cursor`.
    pub fn new(text: String, cursor: usize) -> Self {
        let mut v = Self {
            text,
            cursor: 0,
            vcol: 0,
            mode: Mode::Normal,
            cmdline: String::new(),
            status: None,
            count: None,
            op: None,
            await_r: false,
            await_g: false,
            await_z: false,
            await_textobj: None,
            undo: Vec::new(),
            redo: Vec::new(),
            change_open: false,
            cur: Vec::new(),
            dot: Vec::new(),
            cur_is_change: false,
            replaying: false,
        };
        v.cursor = cursor.min(v.text.len());
        while v.cursor > 0 && !v.text.is_char_boundary(v.cursor) {
            v.cursor -= 1;
        }
        v.clamp_normal();
        v.vcol = v.col(v.cursor);
        v
    }

    pub fn text(&self) -> &str {
        &self.text
    }
    pub fn cursor(&self) -> usize {
        self.cursor
    }
    pub fn mode(&self) -> Mode {
        self.mode
    }

    /// Replace the byte range `start..end` with `repl` as one undo step,
    /// leaving the NORMAL-mode cursor at the start of the replacement.
    /// Used by the popup's `z=` spell-suggest dropdown.
    pub fn replace_range(&mut self, start: usize, end: usize, repl: &str) {
        if start > end || end > self.text.len() || !self.text.is_char_boundary(start) {
            return;
        }
        self.undo.push((self.text.clone(), self.cursor));
        self.redo.clear();
        self.change_open = false;
        self.text.replace_range(start..end, repl);
        self.cursor = start;
        self.clamp_normal();
        self.vcol = self.col(self.cursor);
    }

    /// Move the NORMAL-mode cursor to byte offset `pos` (clamped to a
    /// char boundary within the text).
    pub fn set_cursor(&mut self, pos: usize) {
        self.cursor = pos.min(self.text.len());
        self.clamp_normal();
        self.vcol = self.col(self.cursor);
    }

    /// The text for the bottom status line: `-- NORMAL --`,
    /// `-- INSERT --`, the `:`-command being typed, or a transient
    /// message.
    pub fn status_line(&self) -> String {
        match self.mode {
            Mode::Normal => self
                .status
                .clone()
                .unwrap_or_else(|| "-- NORMAL --".to_string()),
            Mode::Insert => "-- INSERT --".to_string(),
            Mode::Command => self.cmdline.clone(),
        }
    }

    /// Feed one key. Returns whether the popup should submit/cancel.
    pub fn handle(&mut self, key: VimKey) -> VimOutcome {
        // Record keystrokes for `.`. At a clean NORMAL boundary the
        // previous command is finished: commit it to `dot` if it changed
        // text, then start recording the next one.
        if !self.replaying {
            let clean = self.mode == Mode::Normal
                && self.op.is_none()
                && !self.await_r
                && !self.await_g
                && !self.await_z
                && self.await_textobj.is_none();
            if clean {
                self.change_open = false;
                if self.cur_is_change {
                    self.dot = std::mem::take(&mut self.cur);
                }
                self.cur.clear();
                self.cur_is_change = false;
            }
            self.cur.push(key);
        }

        match self.mode {
            Mode::Insert => {
                self.handle_insert(key);
                VimOutcome::None
            }
            Mode::Command => self.handle_command(key),
            Mode::Normal => self.handle_normal(key),
        }
    }

    /// Take an undo snapshot at the first text mutation of a command, so
    /// a multi-key change (or a whole insert session) is one undo step.
    fn begin_change(&mut self) {
        if !self.change_open {
            self.undo.push((self.text.clone(), self.cursor));
            self.redo.clear();
            self.change_open = true;
            if !self.replaying {
                self.cur_is_change = true;
            }
        }
    }

    /// `u` — restore the previous snapshot.
    fn undo(&mut self) {
        if let Some((text, cursor)) = self.undo.pop() {
            self.redo
                .push((std::mem::take(&mut self.text), self.cursor));
            self.text = text;
            self.cursor = cursor;
            self.clamp_normal();
            self.vcol = self.col(self.cursor);
        }
    }

    /// `Ctrl+R` — re-apply a snapshot undone by `u`.
    fn redo(&mut self) {
        if let Some((text, cursor)) = self.redo.pop() {
            self.undo
                .push((std::mem::take(&mut self.text), self.cursor));
            self.text = text;
            self.cursor = cursor;
            self.clamp_normal();
            self.vcol = self.col(self.cursor);
        }
    }

    /// `.` — replay the last change's keystrokes as one undo step.
    fn repeat(&mut self) {
        if self.dot.is_empty() || self.replaying {
            return;
        }
        let dot = self.dot.clone();
        self.replaying = true;
        self.change_open = false; // the whole replay is one new change
        for k in dot {
            self.handle(k);
        }
        self.replaying = false;
    }

    // ----------------------------------------------------------------
    // NORMAL
    // ----------------------------------------------------------------

    fn handle_normal(&mut self, key: VimKey) -> VimOutcome {
        self.status = None;

        // Pending `r{char}`: the next key is the literal replacement.
        // Anything that isn't a printable char cancels it.
        if self.await_r {
            self.await_r = false;
            let n = self.count.take().unwrap_or(1);
            if let VimKey::Char(c) = key {
                self.replace_char(c, n);
            }
            return VimOutcome::None;
        }
        // Pending `g`: only a second `g` is meaningful.
        if self.await_g {
            self.await_g = false;
            if matches!(key, VimKey::Char('g')) {
                self.cursor = 0;
                self.vcol = 0;
                self.clamp_normal();
            }
            self.reset_pending();
            return VimOutcome::None;
        }
        // Pending `z`: `z=` asks the popup for spelling suggestions.
        if self.await_z {
            self.await_z = false;
            self.reset_pending();
            if matches!(key, VimKey::Char('=')) {
                return VimOutcome::SpellSuggest;
            }
            return VimOutcome::None;
        }
        // Pending text object after an operator: expecting `w`.
        if let Some(ia) = self.await_textobj.take() {
            if matches!(key, VimKey::Char('w')) {
                let (s, e) = if ia == 'i' {
                    self.inner_word_bounds()
                } else {
                    self.a_word_bounds()
                };
                if let Some(op) = self.op.take() {
                    self.apply_op_range(op, s, e);
                }
            }
            self.reset_pending();
            return VimOutcome::None;
        }

        // Arrow keys are motions.
        let key = match key {
            VimKey::Left => VimKey::Char('h'),
            VimKey::Right => VimKey::Char('l'),
            VimKey::Up => VimKey::Char('k'),
            VimKey::Down => VimKey::Char('j'),
            other => other,
        };

        match key {
            VimKey::Esc => {
                // Mid-command (operator/count pending): abort just that.
                // Otherwise Esc in NORMAL closes the popup.
                if self.op.is_some() || self.count.is_some() {
                    self.reset_pending();
                    VimOutcome::None
                } else {
                    VimOutcome::Cancel
                }
            }
            VimKey::Enter => VimOutcome::Submit,
            VimKey::Backspace => {
                self.move_motion('h');
                VimOutcome::None
            }
            VimKey::Home => {
                self.cursor = self.line_start(self.cursor);
                self.vcol = 0;
                self.reset_pending();
                VimOutcome::None
            }
            VimKey::End => {
                // Match `$`: land on the last character (insert-mode End,
                // below, goes one past).
                self.cursor = self.line_last_char(self.cursor);
                self.vcol = self.col(self.cursor);
                self.reset_pending();
                VimOutcome::None
            }
            VimKey::Redo => {
                self.redo();
                self.reset_pending();
                VimOutcome::None
            }
            VimKey::Char(c) => self.handle_normal_char(c),
            // Left/Right/Up/Down already remapped above.
            _ => VimOutcome::None,
        }
    }

    fn handle_normal_char(&mut self, c: char) -> VimOutcome {
        // Count digits. `0` is the column-0 motion when no count is in
        // progress, otherwise a digit.
        if c.is_ascii_digit() && !(c == '0' && self.count.is_none()) {
            let d = c as usize - '0' as usize;
            self.count = Some(self.count.unwrap_or(0) * 10 + d);
            return VimOutcome::None;
        }

        // Operator pending: this char is a doubling, text object, or
        // motion target.
        if let Some(op) = self.op {
            if c == op {
                // dd / cc — linewise.
                self.op = None;
                self.count = None;
                self.linewise_op(op);
                return VimOutcome::None;
            }
            if c == 'i' || c == 'a' {
                self.await_textobj = Some(c);
                return VimOutcome::None;
            }
            let n = self.count.take().unwrap_or(1);
            // vim's `cw` acts like `ce`: change to the end of the word,
            // not over the trailing whitespace.
            let motion = if op == 'c' && c == 'w' && self.class_at(self.cursor) != 0 {
                'e'
            } else {
                c
            };
            if let Some((s, e)) = self.op_span(motion, n) {
                self.op = None;
                self.apply_op_range(op, s, e);
            } else {
                self.reset_pending();
            }
            return VimOutcome::None;
        }

        match c {
            'd' | 'c' => self.op = Some(c),
            'i' => self.enter_insert_at(self.cursor),
            'a' => {
                let p = self
                    .next_boundary(self.cursor)
                    .min(self.line_end(self.cursor));
                self.enter_insert_at(p);
            }
            'I' => {
                let p = self.first_non_blank(self.cursor);
                self.enter_insert_at(p);
            }
            'A' => {
                let p = self.line_end(self.cursor);
                self.enter_insert_at(p);
            }
            'o' => {
                self.begin_change();
                let le = self.line_end(self.cursor);
                self.text.insert(le, '\n');
                self.enter_insert_at(le + 1);
            }
            'O' => {
                self.begin_change();
                let ls = self.line_start(self.cursor);
                self.text.insert(ls, '\n');
                self.enter_insert_at(ls);
            }
            'x' => {
                let n = self.count.take().unwrap_or(1);
                self.delete_chars(n);
            }
            's' => {
                let n = self.count.take().unwrap_or(1);
                self.delete_chars(n);
                self.mode = Mode::Insert;
            }
            'S' => self.linewise_op('c'),
            'D' => {
                let e = self.line_end(self.cursor);
                self.delete_range(self.cursor, e);
            }
            'C' => {
                let e = self.line_end(self.cursor);
                self.delete_range(self.cursor, e);
                self.mode = Mode::Insert;
            }
            'r' => self.await_r = true,
            'g' => self.await_g = true,
            'z' => self.await_z = true,
            'u' => self.undo(),
            '.' => self.repeat(),
            ':' => {
                self.mode = Mode::Command;
                self.cmdline = String::from(":");
            }
            'h' | 'l' | 'w' | 'b' | 'e' | 'j' | 'k' | '0' | '^' | '$' | 'G' => self.move_motion(c),
            _ => self.count = None,
        }
        VimOutcome::None
    }

    fn reset_pending(&mut self) {
        self.count = None;
        self.op = None;
        self.await_r = false;
        self.await_g = false;
        self.await_z = false;
        self.await_textobj = None;
    }

    fn enter_insert_at(&mut self, pos: usize) {
        self.cursor = pos;
        self.mode = Mode::Insert;
        self.reset_pending();
    }

    fn move_motion(&mut self, c: char) {
        let n = self.count.take().unwrap_or(1);
        let vertical = matches!(c, 'j' | 'k');
        let mut p = self.cursor;
        match c {
            'h' => {
                for _ in 0..n {
                    p = self.step_left_on_line(p);
                }
            }
            'l' => {
                for _ in 0..n {
                    p = self.step_right_on_line(p);
                }
            }
            'w' => {
                for _ in 0..n {
                    p = self.next_word_start(p);
                }
            }
            'b' => {
                for _ in 0..n {
                    p = self.prev_word_start(p);
                }
            }
            'e' => {
                for _ in 0..n {
                    p = self.next_word_end(p);
                }
            }
            // j/k aim for the preserved desired column (`vcol`), so
            // descending through a short line and back up keeps it.
            'j' => {
                for _ in 0..n {
                    let le = self.line_end(p);
                    if le >= self.text.len() {
                        break;
                    }
                    p = self.place_col(le + 1, self.vcol);
                }
            }
            'k' => {
                for _ in 0..n {
                    let ls = self.line_start(p);
                    if ls == 0 {
                        break;
                    }
                    p = self.place_col(self.line_start(ls - 1), self.vcol);
                }
            }
            '0' => p = self.line_start(p),
            '^' => p = self.first_non_blank(p),
            '$' => p = self.line_last_char(p),
            'G' => p = self.last_line_start(),
            _ => {}
        }
        self.cursor = p;
        self.clamp_normal();
        if !vertical {
            self.vcol = self.col(self.cursor);
        }
    }

    /// The byte range an operator should act over for `motion`,
    /// repeated `n` times, as `(start, end)` with `start <= end`.
    fn op_span(&self, motion: char, n: usize) -> Option<(usize, usize)> {
        let from = self.cursor;
        let mut p = from;
        let span = match motion {
            'w' => {
                for _ in 0..n {
                    p = self.next_word_start(p);
                }
                (from, p)
            }
            'e' => {
                for _ in 0..n {
                    p = self.next_word_end(p);
                }
                (from, self.next_boundary(p)) // `e` is inclusive
            }
            'b' => {
                for _ in 0..n {
                    p = self.prev_word_start(p);
                }
                (p, from)
            }
            'h' => {
                for _ in 0..n {
                    p = self.step_left_on_line(p);
                }
                (p, from)
            }
            'l' => {
                for _ in 0..n {
                    p = self.next_boundary_on_line(p);
                }
                (from, p)
            }
            '0' => (self.line_start(from), from),
            '^' => {
                let t = self.first_non_blank(from);
                (t.min(from), t.max(from))
            }
            '$' => (from, self.line_end(from)),
            _ => return None,
        };
        Some((span.0.min(span.1), span.0.max(span.1)))
    }

    fn apply_op_range(&mut self, op: char, start: usize, end: usize) {
        self.begin_change();
        if start < end {
            self.text.replace_range(start..end, "");
            self.cursor = start;
        }
        if op == 'c' {
            self.mode = Mode::Insert;
        } else {
            self.clamp_normal();
            self.vcol = self.col(self.cursor);
        }
    }

    /// `dd` (delete line + its newline) / `cc`/`S` (clear line content,
    /// stay on it, enter insert).
    fn linewise_op(&mut self, op: char) {
        self.begin_change();
        let ls = self.line_start(self.cursor);
        let le = self.line_end(self.cursor);
        if op == 'c' {
            self.text.replace_range(ls..le, "");
            self.cursor = ls;
            self.mode = Mode::Insert;
        } else {
            let end = if le < self.text.len() {
                self.next_boundary(le)
            } else {
                le
            };
            // Last line with no trailing newline: also drop the
            // preceding newline so the line truly disappears.
            let start = if end == le && ls > 0 {
                self.prev_boundary(ls)
            } else {
                ls
            };
            self.text.replace_range(start..end, "");
            self.cursor = self.line_start(start.min(self.text.len()));
            self.clamp_normal();
            self.vcol = self.col(self.cursor);
        }
    }

    fn delete_chars(&mut self, n: usize) {
        let le = self.line_end(self.cursor);
        let mut e = self.cursor;
        for _ in 0..n {
            if e < le {
                e = self.next_boundary(e);
            }
        }
        self.delete_range(self.cursor, e);
    }

    fn delete_range(&mut self, start: usize, end: usize) {
        if start < end {
            self.begin_change();
            self.text.replace_range(start..end, "");
            self.cursor = start.min(self.text.len());
            self.clamp_normal();
            self.vcol = self.col(self.cursor);
        }
    }

    fn replace_char(&mut self, c: char, n: usize) {
        let le = self.line_end(self.cursor);
        let mut end = self.cursor;
        for _ in 0..n {
            if end < le {
                end = self.next_boundary(end);
            }
        }
        if end == self.cursor {
            return;
        }
        self.begin_change();
        let n_chars = self.text[self.cursor..end].chars().count();
        let repl: String = std::iter::repeat_n(c, n_chars).collect();
        let repl_len = repl.len();
        self.text.replace_range(self.cursor..end, &repl);
        // Land on the last replaced char (vim leaves the cursor there).
        self.cursor = self.cursor + repl_len - c.len_utf8();
        self.clamp_normal();
        self.vcol = self.col(self.cursor);
    }

    // ----------------------------------------------------------------
    // INSERT
    // ----------------------------------------------------------------

    fn handle_insert(&mut self, key: VimKey) {
        match key {
            VimKey::Esc => {
                self.mode = Mode::Normal;
                // vim steps the cursor left on leaving insert.
                let ls = self.line_start(self.cursor);
                if self.cursor > ls {
                    self.cursor = self.prev_boundary(self.cursor);
                }
                self.clamp_normal();
                self.vcol = self.col(self.cursor);
            }
            VimKey::Enter => {
                self.begin_change();
                self.text.insert(self.cursor, '\n');
                self.cursor += 1;
            }
            VimKey::Backspace => {
                if self.cursor > 0 {
                    self.begin_change();
                    let pb = self.prev_boundary(self.cursor);
                    self.text.replace_range(pb..self.cursor, "");
                    self.cursor = pb;
                }
            }
            VimKey::Left => self.cursor = self.prev_boundary(self.cursor),
            VimKey::Right => self.cursor = self.next_boundary(self.cursor).min(self.text.len()),
            VimKey::Up => self.cursor = self.line_up(self.cursor),
            VimKey::Down => self.cursor = self.line_down(self.cursor),
            VimKey::Home => self.cursor = self.line_start(self.cursor),
            VimKey::End => self.cursor = self.line_end(self.cursor),
            VimKey::Char(c) => {
                self.begin_change();
                self.text.insert(self.cursor, c);
                self.cursor += c.len_utf8();
            }
            VimKey::Redo => {}
        }
    }

    // ----------------------------------------------------------------
    // COMMAND (`:`)
    // ----------------------------------------------------------------

    fn handle_command(&mut self, key: VimKey) -> VimOutcome {
        match key {
            VimKey::Esc => {
                self.mode = Mode::Normal;
                self.cmdline.clear();
                VimOutcome::None
            }
            VimKey::Backspace => {
                self.cmdline.pop();
                if self.cmdline.is_empty() {
                    self.mode = Mode::Normal;
                }
                VimOutcome::None
            }
            VimKey::Enter => {
                let cmd = self.cmdline.trim_start_matches(':').trim().to_string();
                self.cmdline.clear();
                self.mode = Mode::Normal;
                match cmd.as_str() {
                    "w" | "wq" | "x" | "wq!" | "w!" | "x!" | "wqa" | "xa" => VimOutcome::Submit,
                    "q" | "q!" | "qa" | "qa!" => VimOutcome::Cancel,
                    other => {
                        self.status = Some(format!("E492: Not an editor command: {other}"));
                        VimOutcome::None
                    }
                }
            }
            VimKey::Char(c) => {
                self.cmdline.push(c);
                VimOutcome::None
            }
            _ => VimOutcome::None,
        }
    }

    // ----------------------------------------------------------------
    // cursor / line / word geometry (all return char boundaries)
    // ----------------------------------------------------------------

    /// Keep the cursor on a char boundary and within its line. With
    /// virtualedit the NORMAL-mode caret may rest at end-of-line (one
    /// past the last char), so we clamp to the line end, not the last
    /// character.
    fn clamp_normal(&mut self) {
        while self.cursor > 0 && !self.text.is_char_boundary(self.cursor) {
            self.cursor -= 1;
        }
        let last = self.line_end(self.cursor);
        if self.cursor > last {
            self.cursor = last;
        }
    }

    fn prev_boundary(&self, pos: usize) -> usize {
        self.text[..pos]
            .char_indices()
            .next_back()
            .map_or(0, |(i, _)| i)
    }

    fn next_boundary(&self, pos: usize) -> usize {
        self.text[pos..]
            .chars()
            .next()
            .map_or(pos, |c| pos + c.len_utf8())
    }

    fn line_start(&self, pos: usize) -> usize {
        self.text[..pos].rfind('\n').map_or(0, |i| i + 1)
    }

    fn line_end(&self, pos: usize) -> usize {
        self.text[pos..]
            .find('\n')
            .map_or(self.text.len(), |i| pos + i)
    }

    /// Byte offset of the last character on `pos`'s line, or the line
    /// start if the line is empty.
    fn line_last_char(&self, pos: usize) -> usize {
        let ls = self.line_start(pos);
        let le = self.line_end(pos);
        if le > ls { self.prev_boundary(le) } else { ls }
    }

    fn first_non_blank(&self, pos: usize) -> usize {
        let ls = self.line_start(pos);
        let le = self.line_end(pos);
        let mut i = ls;
        while i < le {
            let c = self.text[i..].chars().next().unwrap();
            if !c.is_whitespace() {
                return i;
            }
            i += c.len_utf8();
        }
        ls
    }

    fn step_left_on_line(&self, pos: usize) -> usize {
        let ls = self.line_start(pos);
        if pos > ls {
            self.prev_boundary(pos)
        } else {
            pos
        }
    }

    /// NORMAL-mode `l`: with virtualedit it may reach end-of-line (one
    /// past the last char).
    fn step_right_on_line(&self, pos: usize) -> usize {
        let end = self.line_end(pos);
        if pos < end {
            self.next_boundary(pos)
        } else {
            pos
        }
    }

    /// One char right, but not past end-of-line (used by `dl`, which
    /// must be able to reach just past the last char to delete it).
    fn next_boundary_on_line(&self, pos: usize) -> usize {
        self.next_boundary(pos).min(self.line_end(pos))
    }

    fn col(&self, pos: usize) -> usize {
        self.text[self.line_start(pos)..pos].chars().count()
    }

    fn place_col(&self, line_start: usize, col: usize) -> usize {
        let le = self.line_end(line_start);
        let mut i = line_start;
        let mut c = 0;
        while c < col && i < le {
            i = self.next_boundary(i);
            c += 1;
        }
        i
    }

    fn line_down(&self, pos: usize) -> usize {
        let le = self.line_end(pos);
        if le >= self.text.len() {
            return pos;
        }
        self.place_col(le + 1, self.col(pos))
    }

    fn line_up(&self, pos: usize) -> usize {
        let ls = self.line_start(pos);
        if ls == 0 {
            return pos;
        }
        let prev_ls = self.line_start(ls - 1);
        self.place_col(prev_ls, self.col(pos))
    }

    fn last_line_start(&self) -> usize {
        self.first_non_blank(self.text[..].rfind('\n').map_or(0, |i| i + 1))
    }

    /// Char class for word motions: 0 = whitespace, 1 = word
    /// (alphanumeric / `_` / `'`), 2 = other punctuation.
    fn class_at(&self, pos: usize) -> u8 {
        match self.text[pos..].chars().next() {
            None => 0,
            Some(c) if c.is_whitespace() => 0,
            Some(c) if c.is_alphanumeric() || c == '_' || c == '\'' => 1,
            Some(_) => 2,
        }
    }

    fn next_word_start(&self, pos: usize) -> usize {
        let len = self.text.len();
        if pos >= len {
            return len;
        }
        let mut i = pos;
        let cls = self.class_at(i);
        if cls != 0 {
            while i < len && self.class_at(i) == cls {
                i = self.next_boundary(i);
            }
        }
        while i < len && self.class_at(i) == 0 {
            i = self.next_boundary(i);
        }
        i
    }

    fn next_word_end(&self, pos: usize) -> usize {
        let len = self.text.len();
        if pos >= len {
            return pos;
        }
        let mut i = self.next_boundary(pos);
        while i < len && self.class_at(i) == 0 {
            i = self.next_boundary(i);
        }
        if i >= len {
            return self.prev_boundary(len);
        }
        let cls = self.class_at(i);
        loop {
            let nb = self.next_boundary(i);
            if nb < len && self.class_at(nb) == cls {
                i = nb;
            } else {
                break;
            }
        }
        i
    }

    fn prev_word_start(&self, pos: usize) -> usize {
        if pos == 0 {
            return 0;
        }
        let mut i = self.prev_boundary(pos);
        while i > 0 && self.class_at(i) == 0 {
            i = self.prev_boundary(i);
        }
        if self.class_at(i) == 0 {
            return i;
        }
        let cls = self.class_at(i);
        while i > 0 {
            let pb = self.prev_boundary(i);
            if self.class_at(pb) == cls {
                i = pb;
            } else {
                break;
            }
        }
        i
    }

    /// `iw`: the run of the class under the cursor.
    fn inner_word_bounds(&self) -> (usize, usize) {
        let pos = self.cursor;
        let len = self.text.len();
        if len == 0 {
            return (0, 0);
        }
        let cls = self.class_at(pos);
        let mut s = pos;
        while s > 0 {
            let pb = self.prev_boundary(s);
            if self.class_at(pb) == cls {
                s = pb;
            } else {
                break;
            }
        }
        let mut e = pos;
        while e < len && self.class_at(e) == cls {
            e = self.next_boundary(e);
        }
        (s, e)
    }

    /// `aw`: the word plus its trailing whitespace, or leading
    /// whitespace if there is no trailing.
    fn a_word_bounds(&self) -> (usize, usize) {
        let (s, mut e) = self.inner_word_bounds();
        let len = self.text.len();
        if e < len && self.class_at(e) == 0 {
            while e < len && self.class_at(e) == 0 {
                e = self.next_boundary(e);
            }
            return (s, e);
        }
        let mut s2 = s;
        while s2 > 0 {
            let pb = self.prev_boundary(s2);
            if self.class_at(pb) == 0 {
                s2 = pb;
            } else {
                break;
            }
        }
        (s2, e)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    /// Feed each char of `s` as a NORMAL/INSERT key press.
    fn feed(v: &mut VimEdit, s: &str) -> VimOutcome {
        let mut out = VimOutcome::None;
        for c in s.chars() {
            out = v.handle(VimKey::Char(c));
        }
        out
    }

    #[test]
    fn x_deletes_char_under_cursor() {
        let mut v = VimEdit::new("abc".into(), 0);
        feed(&mut v, "x");
        assert_eq!(v.text(), "bc");
        assert_eq!(v.cursor(), 0);
    }

    #[test]
    fn count_x_deletes_n_chars() {
        let mut v = VimEdit::new("abcdef".into(), 0);
        feed(&mut v, "3x");
        assert_eq!(v.text(), "def");
    }

    #[test]
    fn dw_deletes_word_and_trailing_space() {
        let mut v = VimEdit::new("the quick".into(), 0);
        feed(&mut v, "dw");
        assert_eq!(v.text(), "quick");
    }

    #[test]
    fn diw_deletes_inner_word_keeping_space() {
        let mut v = VimEdit::new("the quick".into(), 0);
        feed(&mut v, "diw");
        assert_eq!(v.text(), " quick");
    }

    #[test]
    fn ciw_then_type_replaces_the_word() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        feed(&mut v, "ciw");
        assert_eq!(v.mode(), Mode::Insert);
        assert_eq!(v.text(), " quick");
        feed(&mut v, "the");
        assert_eq!(v.text(), "the quick");
        assert_eq!(v.cursor(), 3);
    }

    #[test]
    fn cw_behaves_like_ce_changing_to_end_of_word() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        feed(&mut v, "cw");
        // Only "teh" is removed, the space stays (cw == ce).
        assert_eq!(v.text(), " quick");
        assert_eq!(v.mode(), Mode::Insert);
        feed(&mut v, "the");
        assert_eq!(v.text(), "the quick");
    }

    #[test]
    fn daw_deletes_word_with_its_space() {
        let mut v = VimEdit::new("the quick fox".into(), 4); // on "quick"
        feed(&mut v, "daw");
        assert_eq!(v.text(), "the fox");
    }

    #[test]
    fn replace_char_with_r() {
        let mut v = VimEdit::new("cat".into(), 0);
        feed(&mut v, "rb");
        assert_eq!(v.text(), "bat");
        assert_eq!(v.cursor(), 0);
    }

    #[test]
    fn word_motions_move_the_cursor() {
        let mut v = VimEdit::new("the quick brown".into(), 0);
        feed(&mut v, "w");
        assert_eq!(v.cursor(), 4); // start of "quick"
        feed(&mut v, "e");
        assert_eq!(v.cursor(), 8); // end of "quick" ('k')
        feed(&mut v, "b");
        assert_eq!(v.cursor(), 4); // back to start of "quick"
    }

    #[test]
    fn count_word_motion() {
        let mut v = VimEdit::new("one two three four".into(), 0);
        feed(&mut v, "2w");
        assert_eq!(v.cursor(), 8); // start of "three"
    }

    #[test]
    fn dollar_and_zero_jump_to_line_edges() {
        let mut v = VimEdit::new("hello world".into(), 0);
        feed(&mut v, "$");
        assert_eq!(v.cursor(), 10); // 'd', last char
        feed(&mut v, "0");
        assert_eq!(v.cursor(), 0);
    }

    #[test]
    fn append_inserts_after_cursor() {
        let mut v = VimEdit::new("ab".into(), 0);
        feed(&mut v, "a"); // append after 'a'
        assert_eq!(v.mode(), Mode::Insert);
        feed(&mut v, "X");
        assert_eq!(v.text(), "aXb");
    }

    #[test]
    fn capital_a_appends_at_end_of_line() {
        let mut v = VimEdit::new("abc".into(), 0);
        feed(&mut v, "A");
        feed(&mut v, "Z");
        assert_eq!(v.text(), "abcZ");
    }

    #[test]
    fn esc_leaves_insert_and_steps_left() {
        let mut v = VimEdit::new("abc".into(), 0);
        feed(&mut v, "A"); // insert at end, cursor == 3
        v.handle(VimKey::Esc);
        assert_eq!(v.mode(), Mode::Normal);
        assert_eq!(v.cursor(), 2); // stepped back onto 'c'
    }

    #[test]
    fn dd_on_single_line_empties_it() {
        let mut v = VimEdit::new("hello".into(), 0);
        feed(&mut v, "dd");
        assert_eq!(v.text(), "");
    }

    #[test]
    fn capital_d_deletes_to_end_of_line() {
        let mut v = VimEdit::new("hello world".into(), 6); // on "world"
        feed(&mut v, "D");
        assert_eq!(v.text(), "hello ");
    }

    #[test]
    fn insert_enter_adds_a_newline() {
        let mut v = VimEdit::new("ab".into(), 0);
        feed(&mut v, "A"); // insert at end
        v.handle(VimKey::Enter);
        feed(&mut v, "c");
        assert_eq!(v.text(), "ab\nc");
    }

    #[test]
    fn normal_enter_submits() {
        let mut v = VimEdit::new("hello".into(), 0);
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::Submit);
    }

    #[test]
    fn colon_wq_submits() {
        let mut v = VimEdit::new("hello".into(), 0);
        assert_eq!(feed(&mut v, ":wq"), VimOutcome::None);
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::Submit);
    }

    #[test]
    fn colon_w_submits() {
        let mut v = VimEdit::new("hello".into(), 0);
        feed(&mut v, ":w");
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::Submit);
    }

    #[test]
    fn colon_q_cancels() {
        let mut v = VimEdit::new("hello".into(), 0);
        feed(&mut v, ":q");
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::Cancel);
    }

    #[test]
    fn unknown_command_reports_and_stays_open() {
        let mut v = VimEdit::new("hello".into(), 0);
        feed(&mut v, ":frobnicate");
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::None);
        assert_eq!(v.mode(), Mode::Normal);
        assert!(v.status_line().contains("Not an editor command"));
    }

    #[test]
    fn command_backspace_past_colon_returns_to_normal() {
        let mut v = VimEdit::new("hi".into(), 0);
        feed(&mut v, ":w");
        v.handle(VimKey::Backspace);
        v.handle(VimKey::Backspace); // removes the ':'
        assert_eq!(v.mode(), Mode::Normal);
    }

    #[test]
    fn full_fix_flow_ciw_replace_then_wq() {
        // The headline use case: correction was wrong, fix one word.
        let mut v = VimEdit::new("the quick browne fox".into(), 10); // on "browne"
        feed(&mut v, "ciw");
        feed(&mut v, "brown");
        assert_eq!(v.text(), "the quick brown fox");
        v.handle(VimKey::Esc); // back to NORMAL before the command
        assert_eq!(feed(&mut v, ":wq"), VimOutcome::None);
        assert_eq!(v.handle(VimKey::Enter), VimOutcome::Submit);
    }

    #[test]
    fn multibyte_word_edit() {
        let mut v = VimEdit::new("cafe au lait".into(), 0);
        feed(&mut v, "cw"); // change "cafe"
        feed(&mut v, "café");
        assert_eq!(v.text(), "café au lait");
    }

    #[test]
    fn open_line_below_enters_insert_on_new_line() {
        let mut v = VimEdit::new("abc".into(), 0);
        feed(&mut v, "o");
        assert_eq!(v.mode(), Mode::Insert);
        feed(&mut v, "xy");
        assert_eq!(v.text(), "abc\nxy");
    }

    #[test]
    fn j_k_move_between_lines() {
        let mut v = VimEdit::new("abc\ndef".into(), 1); // on 'b'
        feed(&mut v, "j");
        assert_eq!(v.cursor(), 5); // 'e' on line 2, same column
        feed(&mut v, "k");
        assert_eq!(v.cursor(), 1); // back to 'b'
    }

    #[test]
    fn home_and_end_jump_to_line_edges() {
        let mut v = VimEdit::new("hello world".into(), 6);
        v.handle(VimKey::Home);
        assert_eq!(v.cursor(), 0);
        v.handle(VimKey::End);
        assert_eq!(v.cursor(), 10); // last char 'd', like `$`
        // In insert mode End goes one past the last char.
        feed(&mut v, "i");
        v.handle(VimKey::End);
        assert_eq!(v.cursor(), 11);
    }

    #[test]
    fn l_reaches_end_of_line_with_virtualedit() {
        let mut v = VimEdit::new("ab".into(), 0);
        feed(&mut v, "l");
        assert_eq!(v.cursor(), 1);
        feed(&mut v, "l");
        assert_eq!(v.cursor(), 2); // one past the last char (EOL)
        feed(&mut v, "l");
        assert_eq!(v.cursor(), 2); // stays at EOL
    }

    #[test]
    fn vertical_motion_preserves_desired_column() {
        // Column 8 on a long line, down through a short line, down to a
        // long line — the column is restored (vim's curswant).
        let mut v = VimEdit::new("hello world\nhi\ngoodbye all".into(), 0);
        for _ in 0..8 {
            feed(&mut v, "l");
        }
        assert_eq!(v.cursor(), 8);
        feed(&mut v, "j"); // line 2 "hi" is short → land at its end
        assert!((12..=14).contains(&v.cursor()));
        feed(&mut v, "j"); // line 3 is long → column 8 restored
        assert_eq!(v.cursor(), 15 + 8);
    }

    #[test]
    fn undo_restores_and_redo_reapplies() {
        let mut v = VimEdit::new("hello".into(), 0);
        feed(&mut v, "x");
        assert_eq!(v.text(), "ello");
        feed(&mut v, "u");
        assert_eq!(v.text(), "hello");
        v.handle(VimKey::Redo);
        assert_eq!(v.text(), "ello");
    }

    #[test]
    fn an_insert_session_is_one_undo_step() {
        let mut v = VimEdit::new("ab".into(), 0);
        feed(&mut v, "A"); // append
        feed(&mut v, "XYZ");
        v.handle(VimKey::Esc);
        assert_eq!(v.text(), "abXYZ");
        feed(&mut v, "u"); // one undo unwinds the whole session
        assert_eq!(v.text(), "ab");
    }

    #[test]
    fn ciw_then_undo_restores_the_word() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        feed(&mut v, "ciw");
        feed(&mut v, "the");
        v.handle(VimKey::Esc);
        assert_eq!(v.text(), "the quick");
        feed(&mut v, "u");
        assert_eq!(v.text(), "teh quick");
    }

    #[test]
    fn esc_in_normal_cancels() {
        let mut v = VimEdit::new("hello".into(), 0);
        assert_eq!(v.handle(VimKey::Esc), VimOutcome::Cancel);
    }

    #[test]
    fn esc_aborts_a_pending_operator_without_cancelling() {
        let mut v = VimEdit::new("hello world".into(), 0);
        feed(&mut v, "d"); // operator pending
        assert_eq!(v.handle(VimKey::Esc), VimOutcome::None);
        // a following motion is now just a motion, not part of a delete.
        feed(&mut v, "w");
        assert_eq!(v.text(), "hello world");
    }

    #[test]
    fn z_equals_requests_spell_suggestions() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        assert_eq!(v.handle(VimKey::Char('z')), VimOutcome::None);
        assert_eq!(v.handle(VimKey::Char('=')), VimOutcome::SpellSuggest);
    }

    #[test]
    fn z_then_other_key_is_a_noop() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        feed(&mut v, "z");
        assert_eq!(v.handle(VimKey::Char('x')), VimOutcome::None);
        assert_eq!(v.text(), "teh quick"); // 'x' didn't delete
    }

    #[test]
    fn replace_range_swaps_a_word_and_is_undoable() {
        let mut v = VimEdit::new("teh quick".into(), 0);
        v.replace_range(0, 3, "the");
        assert_eq!(v.text(), "the quick");
        assert_eq!(v.cursor(), 0);
        feed(&mut v, "u");
        assert_eq!(v.text(), "teh quick");
    }

    #[test]
    fn dot_repeats_the_last_change() {
        let mut v = VimEdit::new("aaaa".into(), 0);
        feed(&mut v, "x");
        feed(&mut v, ".");
        feed(&mut v, ".");
        assert_eq!(v.text(), "a");
    }

    #[test]
    fn dot_repeats_a_change_with_inserted_text() {
        let mut v = VimEdit::new("one two".into(), 0);
        feed(&mut v, "ciw");
        feed(&mut v, "X");
        v.handle(VimKey::Esc);
        assert_eq!(v.text(), "X two");
        feed(&mut v, "w"); // move to "two"
        feed(&mut v, "."); // repeat ciwX
        assert_eq!(v.text(), "X X");
    }
}