modalkit 0.0.25

A library for building applications that use modal editing
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
use std::borrow::Cow;
use std::sync::Arc;

use crate::editing::{
    application::ApplicationInfo,
    completion::{complete_path, CompletionList},
    cursor::Adjustable,
    store::Store,
};
use crate::errors::EditResult;
use crate::prelude::*;

use super::{CursorGroupIdContext, EditBuffer};

pub trait CompletionActions<C, I>
where
    I: ApplicationInfo,
{
    fn complete_auto(
        &mut self,
        style: &CompletionStyle,
        display: &CompletionDisplay,
        ctx: &C,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I>;

    fn complete_file(
        &mut self,
        style: &CompletionStyle,
        display: &CompletionDisplay,
        ctx: &C,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I>;

    fn complete_line(
        &mut self,
        style: &CompletionStyle,
        scope: &CompletionScope,
        display: &CompletionDisplay,
        ctx: &C,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I>;

    fn complete_word(
        &mut self,
        style: &CompletionStyle,
        scope: &CompletionScope,
        display: &CompletionDisplay,
        ctx: &C,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I>;
}

impl<'a, I> CompletionActions<CursorGroupIdContext<'a>, I> for EditBuffer<I>
where
    I: ApplicationInfo,
{
    fn complete_auto(
        &mut self,
        style: &CompletionStyle,
        display: &CompletionDisplay,
        ctx: &CursorGroupIdContext<'a>,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I> {
        let gid = ctx.0;

        if !matches!(style, CompletionStyle::None) {
            if let Some(list) = self.completions.get_mut(&gid) {
                if let Some(val) = list.select(style) {
                    let adjs = list.replace(&mut self.text, val);
                    self._adjust_all(adjs, store);
                }

                return Ok(None);
            }
        }

        let cursor = self.get_leader(gid);
        let mut start = cursor.clone();
        let list =
            store
                .completer
                .complete(&self.text, &mut start, &self.id, &mut store.application);

        if list.is_empty() {
            let scope = CompletionScope::Global;

            return self.complete_word(style, &scope, display, ctx, store);
        }

        let so = self.text.cursor_to_offset(&start);
        let eo = self.text.cursor_to_offset(&cursor);
        let prefix = self.text.slice(so..eo).to_string();

        let mut list = CompletionList {
            prefix,
            candidates: Arc::new(list),
            selected: None,
            display: display.clone(),
            cursor,
            start,
        };

        if let Some(val) = list.select(style) {
            let adjs = list.replace(&mut self.text, val);
            list.cursor.adjust(&adjs);
            self._adjust_all(adjs, store);
        }

        self.completions.insert(gid, list);

        Ok(None)
    }

    fn complete_file(
        &mut self,
        style: &CompletionStyle,
        display: &CompletionDisplay,
        ctx: &CursorGroupIdContext<'a>,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I> {
        let gid = ctx.0;

        if !matches!(style, CompletionStyle::None) {
            if let Some(list) = self.completions.get_mut(&gid) {
                if let Some(val) = list.select(style) {
                    let adjs = list.replace(&mut self.text, val);
                    self._adjust_all(adjs, store);
                }

                return Ok(None);
            }
        }

        let cursor = self.get_leader(gid);
        let mut start = cursor.clone();

        let list = complete_path(&self.text, &mut start);

        if list.is_empty() {
            return Ok(None);
        }

        let so = self.text.cursor_to_offset(&start);
        let eo = self.text.cursor_to_offset(&cursor);
        let prefix = self.text.slice(so..eo).to_string();

        let mut list = CompletionList {
            prefix,
            candidates: Arc::new(list),
            selected: None,
            display: display.clone(),
            cursor,
            start,
        };

        if let Some(val) = list.select(style) {
            let adjs = list.replace(&mut self.text, val);
            list.cursor.adjust(&adjs);
            self._adjust_all(adjs, store);
        }

        self.completions.insert(gid, list);

        Ok(None)
    }

    fn complete_line(
        &mut self,
        style: &CompletionStyle,
        scope: &CompletionScope,
        display: &CompletionDisplay,
        ctx: &CursorGroupIdContext<'a>,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I> {
        let gid = ctx.0;

        if !matches!(style, CompletionStyle::None) {
            if let Some(list) = self.completions.get_mut(&gid) {
                if let Some(val) = list.select(style) {
                    let adjs = list.replace(&mut self.text, val);
                    self._adjust_all(adjs, store);
                }

                return Ok(None);
            }
        }

        let cursor = self.get_leader(gid);
        let mut start = cursor.clone();
        start.x = 0;

        let begc = self.text.cursor_to_offset(&start);
        let endc = self.text.cursor_to_offset(&cursor);
        let prefix = self.text.slice(begc..endc);

        let source = match scope {
            CompletionScope::Buffer => &self.lines,
            CompletionScope::Global => &store.completions.lines,
        };

        let prefix = Cow::from(&prefix);
        let list = source.complete_line(prefix.as_ref());

        if list.is_empty() {
            return Ok(None);
        }

        let mut list = CompletionList {
            prefix: prefix.into_owned(),
            candidates: Arc::new(list),
            selected: None,
            display: display.clone(),
            cursor,
            start,
        };

        if let Some(val) = list.select(style) {
            let adjs = list.replace(&mut self.text, val);
            list.cursor.adjust(&adjs);
            self._adjust_all(adjs, store);
        }

        self.completions.insert(gid, list);

        Ok(None)
    }

    fn complete_word(
        &mut self,
        style: &CompletionStyle,
        scope: &CompletionScope,
        display: &CompletionDisplay,
        ctx: &CursorGroupIdContext<'a>,
        store: &mut Store<I>,
    ) -> EditResult<EditInfo, I> {
        let gid = ctx.0;

        if !matches!(style, CompletionStyle::None) {
            if let Some(list) = self.completions.get_mut(&gid) {
                if let Some(val) = list.select(style) {
                    let adjs = list.replace(&mut self.text, val);
                    self._adjust_all(adjs, store);
                }

                return Ok(None);
            }
        }

        let cursor = self.get_leader(gid);
        let mut start = cursor.clone();

        let prefix = match self.text.get_prefix_word_mut(&mut start, &WordStyle::Big) {
            None => return Ok(None),
            Some(p) => p,
        };

        let source = match scope {
            CompletionScope::Buffer => &self.lines,
            CompletionScope::Global => &store.completions.lines,
        };

        let prefix = Cow::from(&prefix);
        let list = source.complete_word(prefix.as_ref());

        if list.is_empty() {
            return Ok(None);
        }

        let mut list = CompletionList {
            prefix: prefix.into_owned(),
            candidates: Arc::new(list),
            selected: None,
            display: display.clone(),
            cursor,
            start,
        };

        if let Some(val) = list.select(style) {
            let adjs = list.replace(&mut self.text, val);
            list.cursor.adjust(&adjs);
            self._adjust_all(adjs, store);
        }

        self.completions.insert(gid, list);

        Ok(None)
    }
}

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

    use std::fs::File;
    use std::path::{Path, MAIN_SEPARATOR};
    use temp_dir::TempDir;

    use crate::editing::{
        application::{ApplicationInfo, ApplicationStore},
        completion::{Completer, CompletionMap},
    };

    struct TestStore {
        completions: CompletionMap<String, ()>,
    }

    impl Default for TestStore {
        fn default() -> Self {
            let mut completions = CompletionMap::default();
            completions.insert("pressed".into(), ());
            completions.insert("dressed".into(), ());

            TestStore { completions }
        }
    }

    impl ApplicationStore for TestStore {}

    #[derive(Clone, Debug, Eq, PartialEq)]
    enum TestInfo {}

    impl ApplicationInfo for TestInfo {
        type Error = String;
        type Action = ();
        type Store = TestStore;
        type WindowId = String;
        type ContentId = String;

        fn content_of_command(ct: CommandType) -> String {
            EmptyInfo::content_of_command(ct)
        }
    }

    pub struct TestCompleter;

    impl Completer<TestInfo> for TestCompleter {
        fn complete(
            &mut self,
            text: &EditRope,
            cursor: &mut Cursor,
            _: &String,
            store: &mut TestStore,
        ) -> Vec<String> {
            let word = text
                .get_prefix_word_mut(cursor, &WordStyle::Little)
                .unwrap_or_else(EditRope::empty);
            let word = Cow::from(&word);
            store.completions.complete(word.as_ref())
        }
    }

    #[test]
    fn test_complete_auto() {
        let mut ebuf = EditBuffer::new("".to_string());
        let gid = ebuf.create_group();
        let vwctx = ViewportContext::default();
        let vctx = EditContext::default();
        let mut store = Store::<TestInfo>::default();
        store.completer = Box::new(TestCompleter);
        let prev = MoveDir1D::Previous;
        let next = MoveDir1D::Next;

        // Empty text completes to "dressed" first.
        ebuf.complete_auto(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text(), "dressed\n");
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 7));

        // Then completes to "pressed".
        ebuf.complete_auto(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text(), "pressed\n");
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 7));

        // Move backwards to "dressed".
        ebuf.complete_auto(
            &CompletionStyle::List(prev),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text(), "dressed\n");
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 7));

        // Move backwards to "".
        ebuf.complete_auto(
            &CompletionStyle::List(prev),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text(), "\n");
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 0));

        // Clear completion list.
        ebuf.completions.remove(&gid);

        // Type "d".
        type_char!(ebuf, 'd', gid, vwctx, vctx, store);
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 1));

        // Complete to "dressed".
        ebuf.complete_auto(
            &CompletionStyle::List(prev),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text(), "dressed\n");
        assert_eq!(ebuf.get_leader(gid), Cursor::new(0, 7));
    }

    #[test]
    fn test_complete_file() {
        // First, create temporary and files to complete.
        let tmp = TempDir::new().unwrap();
        let file1 = tmp.child("file1");
        let file2 = tmp.child("file2");
        let hidden = tmp.child(".hidden");

        let _ = File::create(file1.as_path()).unwrap();
        let _ = File::create(file2.as_path()).unwrap();
        let _ = File::create(hidden.as_path()).unwrap();

        let file1 = file1.as_os_str().to_string_lossy();
        let file2 = file2.as_os_str().to_string_lossy();
        let hidden = hidden.as_os_str().to_string_lossy();
        let next = MoveDir1D::Next;

        // create buffer with path to temporary directory.
        let path = tmp.path().as_os_str().to_string_lossy();
        let (mut ebuf, gid, vwctx, mut vctx, mut store) = mkfivestr(path.as_ref());
        vctx.persist.insert = Some(InsertStyle::Insert);

        // Move to end of line.
        ebuf.set_leader(gid, Cursor::new(0, 0));

        let mv = mv!(MoveType::LinePos(MovePosition::End), 0);
        edit!(ebuf, EditAction::Motion, mv, ctx!(gid, vwctx, vctx), store);

        // Type path separator.
        type_char!(ebuf, MAIN_SEPARATOR, gid, vwctx, vctx, store);

        // First, complete to file1.
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text().trim_end(), file1);

        // Then complete to file2.
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text().trim_end(), file2);

        // Then return to parent.
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        let result = ebuf.get_text();
        let result = Path::new(result.trim_end());
        assert_eq!(result, tmp.path());

        // Clear completion list.
        ebuf.completions.remove(&gid);

        // Type "." so we can see hidden files.
        type_char!(ebuf, '.', gid, vwctx, vctx, store);

        // Complete to ".hidden".
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text().trim_end(), hidden);

        // Return to parent.
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        let result = ebuf.get_text();
        let result = Path::new(result.trim_end());
        assert_eq!(result, tmp.path());

        // Clear completion list.
        ebuf.completions.remove(&gid);

        // Type "h" so we can complete the filename.
        type_char!(ebuf, 'h', gid, vwctx, vctx, store);

        // Complete to ".hidden".
        ebuf.complete_file(
            &CompletionStyle::List(next),
            &CompletionDisplay::None,
            ctx!(gid, vwctx, vctx),
            &mut store,
        )
        .unwrap();
        assert_eq!(ebuf.get_text().trim_end(), hidden);
    }

    #[test]
    fn test_complete_line() {
        let (mut ebuf1, gid, vwctx, vctx, mut store) = mkfivestr("foo\n1 2 3\n");
        let mut ebuf2 = mkbuf();
        ebuf2.set_text("foo bar baz\nfoo bar quux\n\n");
        ebuf2.checkpoint(ctx!(gid, vwctx, vctx), &mut store).unwrap();

        let prev = MoveDir1D::Previous;
        let next = MoveDir1D::Next;

        ebuf1.set_leader(gid, Cursor::new(0, 3));
        type_char!(ebuf1, ' ', gid, vwctx, vctx, store);
        type_char!(ebuf1, 'b', gid, vwctx, vctx, store);

        // Completion with Buffer scope does nothing.
        ebuf1
            .complete_line(
                &CompletionStyle::List(next),
                &CompletionScope::Buffer,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo b\n1 2 3\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 5));

        // Completion with Global scope results in "foo bar baz".
        ebuf1
            .complete_line(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo bar baz\n1 2 3\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 11));

        // Doing it again results in "foo bar quux".
        ebuf1
            .complete_line(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo bar quux\n1 2 3\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 12));

        // Once more returns to "foo b".
        ebuf1
            .complete_line(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo b\n1 2 3\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 5));

        // Go backwards to "foo bar quux".
        ebuf1
            .complete_line(
                &CompletionStyle::List(prev),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo bar quux\n1 2 3\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 12));
    }

    #[test]
    fn test_complete_word() {
        let (mut ebuf1, gid, vwctx, vctx, mut store) = mkfivestr("foo\nbar\n");
        let mut ebuf2 = mkbuf();
        ebuf2.set_text("foo baz\n");
        ebuf2.checkpoint(ctx!(gid, vwctx, vctx), &mut store).unwrap();

        let prev = MoveDir1D::Previous;
        let next = MoveDir1D::Next;

        ebuf1.set_leader(gid, Cursor::new(0, 3));
        type_char!(ebuf1, ' ', gid, vwctx, vctx, store);
        type_char!(ebuf1, 'b', gid, vwctx, vctx, store);

        // Completion with Buffer scope only completes to bar.
        ebuf1
            .complete_word(
                &CompletionStyle::List(next),
                &CompletionScope::Buffer,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo bar\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 7));

        // Completing again returns to "b".
        ebuf1
            .complete_word(
                &CompletionStyle::List(next),
                &CompletionScope::Buffer,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo b\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 5));

        // Clear completion list.
        ebuf1.completions.remove(&gid);

        // Completion with Global scope first yields "bar".
        ebuf1
            .complete_word(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo bar\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 7));

        // Doing it again yields "baz".
        ebuf1
            .complete_word(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo baz\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 7));

        // And then returns to "b".
        ebuf1
            .complete_word(
                &CompletionStyle::List(next),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo b\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 5));

        // Go backwards to "baz".
        ebuf1
            .complete_word(
                &CompletionStyle::List(prev),
                &CompletionScope::Global,
                &CompletionDisplay::None,
                ctx!(gid, vwctx, vctx),
                &mut store,
            )
            .unwrap();
        assert_eq!(ebuf1.get_text(), "foo baz\nbar\n");
        assert_eq!(ebuf1.get_leader(gid), Cursor::new(0, 7));
    }
}