aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterh/liner/line.go
blob: 903dd240d3335f3657a7483bdb543525b3278308 (plain) (blame)
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
// +build windows linux darwin openbsd freebsd netbsd

package liner

import (
    "container/ring"
    "errors"
    "fmt"
    "io"
    "strings"
    "unicode"
    "unicode/utf8"
)

type action int

const (
    left action = iota
    right
    up
    down
    home
    end
    insert
    del
    pageUp
    pageDown
    f1
    f2
    f3
    f4
    f5
    f6
    f7
    f8
    f9
    f10
    f11
    f12
    altB
    altF
    altY
    shiftTab
    wordLeft
    wordRight
    winch
    unknown
)

const (
    ctrlA = 1
    ctrlB = 2
    ctrlC = 3
    ctrlD = 4
    ctrlE = 5
    ctrlF = 6
    ctrlG = 7
    ctrlH = 8
    tab   = 9
    lf    = 10
    ctrlK = 11
    ctrlL = 12
    cr    = 13
    ctrlN = 14
    ctrlO = 15
    ctrlP = 16
    ctrlQ = 17
    ctrlR = 18
    ctrlS = 19
    ctrlT = 20
    ctrlU = 21
    ctrlV = 22
    ctrlW = 23
    ctrlX = 24
    ctrlY = 25
    ctrlZ = 26
    esc   = 27
    bs    = 127
)

const (
    beep = "\a"
)

type tabDirection int

const (
    tabForward tabDirection = iota
    tabReverse
)

func (s *State) refresh(prompt []rune, buf []rune, pos int) error {
    if s.multiLineMode {
        return s.refreshMultiLine(prompt, buf, pos)
    } else {
        return s.refreshSingleLine(prompt, buf, pos)
    }
}

func (s *State) refreshSingleLine(prompt []rune, buf []rune, pos int) error {
    s.cursorPos(0)
    _, err := fmt.Print(string(prompt))
    if err != nil {
        return err
    }

    pLen := countGlyphs(prompt)
    bLen := countGlyphs(buf)
    pos = countGlyphs(buf[:pos])
    if pLen+bLen < s.columns {
        _, err = fmt.Print(string(buf))
        s.eraseLine()
        s.cursorPos(pLen + pos)
    } else {
        // Find space available
        space := s.columns - pLen
        space-- // space for cursor
        start := pos - space/2
        end := start + space
        if end > bLen {
            end = bLen
            start = end - space
        }
        if start < 0 {
            start = 0
            end = space
        }
        pos -= start

        // Leave space for markers
        if start > 0 {
            start++
        }
        if end < bLen {
            end--
        }
        startRune := len(getPrefixGlyphs(buf, start))
        line := getPrefixGlyphs(buf[startRune:], end-start)

        // Output
        if start > 0 {
            fmt.Print("{")
        }
        fmt.Print(string(line))
        if end < bLen {
            fmt.Print("}")
        }

        // Set cursor position
        s.eraseLine()
        s.cursorPos(pLen + pos)
    }
    return err
}

func (s *State) refreshMultiLine(prompt []rune, buf []rune, pos int) error {
    promptColumns := countMultiLineGlyphs(prompt, s.columns, 0)
    totalColumns := countMultiLineGlyphs(buf, s.columns, promptColumns)
    totalRows := (totalColumns + s.columns - 1) / s.columns
    maxRows := s.maxRows
    if totalRows > s.maxRows {
        s.maxRows = totalRows
    }
    cursorRows := s.cursorRows
    if cursorRows == 0 {
        cursorRows = 1
    }

    /* First step: clear all the lines used before. To do so start by
    * going to the last row. */
    if maxRows-cursorRows > 0 {
        s.moveDown(maxRows - cursorRows)
    }

    /* Now for every row clear it, go up. */
    for i := 0; i < maxRows-1; i++ {
        s.cursorPos(0)
        s.eraseLine()
        s.moveUp(1)
    }

    /* Clean the top line. */
    s.cursorPos(0)
    s.eraseLine()

    /* Write the prompt and the current buffer content */
    if _, err := fmt.Print(string(prompt)); err != nil {
        return err
    }
    if _, err := fmt.Print(string(buf)); err != nil {
        return err
    }

    /* If we are at the very end of the screen with our prompt, we need to
     * emit a newline and move the prompt to the first column. */
    cursorColumns := countMultiLineGlyphs(buf[:pos], s.columns, promptColumns)
    if cursorColumns == totalColumns && totalColumns%s.columns == 0 {
        s.emitNewLine()
        s.cursorPos(0)
        totalRows++
        if totalRows > s.maxRows {
            s.maxRows = totalRows
        }
    }

    /* Move cursor to right position. */
    cursorRows = (cursorColumns + s.columns) / s.columns
    if s.cursorRows > 0 && totalRows-cursorRows > 0 {
        s.moveUp(totalRows - cursorRows)
    }
    /* Set column. */
    s.cursorPos(cursorColumns % s.columns)

    s.cursorRows = cursorRows
    return nil
}

func (s *State) resetMultiLine(prompt []rune, buf []rune, pos int) {
    columns := countMultiLineGlyphs(prompt, s.columns, 0)
    columns = countMultiLineGlyphs(buf[:pos], s.columns, columns)
    columns += 2 // ^C
    cursorRows := (columns + s.columns) / s.columns
    if s.maxRows-cursorRows > 0 {
        for i := 0; i < s.maxRows-cursorRows; i++ {
            fmt.Println() // always moves the cursor down or scrolls the window up as needed
        }
    }
    s.maxRows = 1
    s.cursorRows = 0
}

func longestCommonPrefix(strs []string) string {
    if len(strs) == 0 {
        return ""
    }
    longest := strs[0]

    for _, str := range strs[1:] {
        for !strings.HasPrefix(str, longest) {
            longest = longest[:len(longest)-1]
        }
    }
    // Remove trailing partial runes
    longest = strings.TrimRight(longest, "\uFFFD")
    return longest
}

func (s *State) circularTabs(items []string) func(tabDirection) (string, error) {
    item := -1
    return func(direction tabDirection) (string, error) {
        if direction == tabForward {
            if item < len(items)-1 {
                item++
            } else {
                item = 0
            }
        } else if direction == tabReverse {
            if item > 0 {
                item--
            } else {
                item = len(items) - 1
            }
        }
        return items[item], nil
    }
}

func calculateColumns(screenWidth int, items []string) (numColumns, numRows, maxWidth int) {
    for _, item := range items {
        if len(item) >= screenWidth {
            return 1, len(items), screenWidth - 1
        }
        if len(item) >= maxWidth {
            maxWidth = len(item) + 1
        }
    }

    numColumns = screenWidth / maxWidth
    numRows = len(items) / numColumns
    if len(items)%numColumns > 0 {
        numRows++
    }

    if len(items) <= numColumns {
        maxWidth = 0
    }

    return
}

func (s *State) printedTabs(items []string) func(tabDirection) (string, error) {
    numTabs := 1
    prefix := longestCommonPrefix(items)
    return func(direction tabDirection) (string, error) {
        if len(items) == 1 {
            return items[0], nil
        }

        if numTabs == 2 {
            if len(items) > 100 {
                fmt.Printf("\nDisplay all %d possibilities? (y or n) ", len(items))
            prompt:
                for {
                    next, err := s.readNext()
                    if err != nil {
                        return prefix, err
                    }

                    if key, ok := next.(rune); ok {
                        switch key {
                        case 'n', 'N':
                            return prefix, nil
                        case 'y', 'Y':
                            break prompt
                        case ctrlC, ctrlD, cr, lf:
                            s.restartPrompt()
                        }
                    }
                }
            }
            fmt.Println("")

            numColumns, numRows, maxWidth := calculateColumns(s.columns, items)

            for i := 0; i < numRows; i++ {
                for j := 0; j < numColumns*numRows; j += numRows {
                    if i+j < len(items) {
                        if maxWidth > 0 {
                            fmt.Printf("%-*.[1]*s", maxWidth, items[i+j])
                        } else {
                            fmt.Printf("%v ", items[i+j])
                        }
                    }
                }
                fmt.Println("")
            }
        } else {
            numTabs++
        }
        return prefix, nil
    }
}

func (s *State) tabComplete(p []rune, line []rune, pos int) ([]rune, int, interface{}, error) {
    if s.completer == nil {
        return line, pos, rune(esc), nil
    }
    head, list, tail := s.completer(string(line), pos)
    if len(list) <= 0 {
        return line, pos, rune(esc), nil
    }
    hl := utf8.RuneCountInString(head)
    if len(list) == 1 {
        s.refresh(p, []rune(head+list[0]+tail), hl+utf8.RuneCountInString(list[0]))
        return []rune(head + list[0] + tail), hl + utf8.RuneCountInString(list[0]), rune(esc), nil
    }

    direction := tabForward
    tabPrinter := s.circularTabs(list)
    if s.tabStyle == TabPrints {
        tabPrinter = s.printedTabs(list)
    }

    for {
        pick, err := tabPrinter(direction)
        if err != nil {
            return line, pos, rune(esc), err
        }
        s.refresh(p, []rune(head+pick+tail), hl+utf8.RuneCountInString(pick))

        next, err := s.readNext()
        if err != nil {
            return line, pos, rune(esc), err
        }
        if key, ok := next.(rune); ok {
            if key == tab {
                direction = tabForward
                continue
            }
            if key == esc {
                return line, pos, rune(esc), nil
            }
        }
        if a, ok := next.(action); ok && a == shiftTab {
            direction = tabReverse
            continue
        }
        return []rune(head + pick + tail), hl + utf8.RuneCountInString(pick), next, nil
    }
    // Not reached
    return line, pos, rune(esc), nil
}

// reverse intelligent search, implements a bash-like history search.
func (s *State) reverseISearch(origLine []rune, origPos int) ([]rune, int, interface{}, error) {
    p := "(reverse-i-search)`': "
    s.refresh([]rune(p), origLine, origPos)

    line := []rune{}
    pos := 0
    foundLine := string(origLine)
    foundPos := origPos

    getLine := func() ([]rune, []rune, int) {
        search := string(line)
        prompt := "(reverse-i-search)`%s': "
        return []rune(fmt.Sprintf(prompt, search)), []rune(foundLine), foundPos
    }

    history, positions := s.getHistoryByPattern(string(line))
    historyPos := len(history) - 1

    for {
        next, err := s.readNext()
        if err != nil {
            return []rune(foundLine), foundPos, rune(esc), err
        }

        switch v := next.(type) {
        case rune:
            switch v {
            case ctrlR: // Search backwards
                if historyPos > 0 && historyPos < len(history) {
                    historyPos--
                    foundLine = history[historyPos]
                    foundPos = positions[historyPos]
                } else {
                    fmt.Print(beep)
                }
            case ctrlS: // Search forward
                if historyPos < len(history)-1 && historyPos >= 0 {
                    historyPos++
                    foundLine = history[historyPos]
                    foundPos = positions[historyPos]
                } else {
                    fmt.Print(beep)
                }
            case ctrlH, bs: // Backspace
                if pos <= 0 {
                    fmt.Print(beep)
                } else {
                    n := len(getSuffixGlyphs(line[:pos], 1))
                    line = append(line[:pos-n], line[pos:]...)
                    pos -= n

                    // For each char deleted, display the last matching line of history
                    history, positions := s.getHistoryByPattern(string(line))
                    historyPos = len(history) - 1
                    if len(history) > 0 {
                        foundLine = history[historyPos]
                        foundPos = positions[historyPos]
                    } else {
                        foundLine = ""
                        foundPos = 0
                    }
                }
            case ctrlG: // Cancel
                return origLine, origPos, rune(esc), err

            case tab, cr, lf, ctrlA, ctrlB, ctrlD, ctrlE, ctrlF, ctrlK,
                ctrlL, ctrlN, ctrlO, ctrlP, ctrlQ, ctrlT, ctrlU, ctrlV, ctrlW, ctrlX, ctrlY, ctrlZ:
                fallthrough
            case 0, ctrlC, esc, 28, 29, 30, 31:
                return []rune(foundLine), foundPos, next, err
            default:
                line = append(line[:pos], append([]rune{v}, line[pos:]...)...)
                pos++

                // For each keystroke typed, display the last matching line of history
                history, positions = s.getHistoryByPattern(string(line))
                historyPos = len(history) - 1
                if len(history) > 0 {
                    foundLine = history[historyPos]
                    foundPos = positions[historyPos]
                } else {
                    foundLine = ""
                    foundPos = 0
                }
            }
        case action:
            return []rune(foundLine), foundPos, next, err
        }
        s.refresh(getLine())
    }
}

// addToKillRing adds some text to the kill ring. If mode is 0 it adds it to a
// new node in the end of the kill ring, and move the current pointer to the new
// node. If mode is 1 or 2 it appends or prepends the text to the current entry
// of the killRing.
func (s *State) addToKillRing(text []rune, mode int) {
    // Don't use the same underlying array as text
    killLine := make([]rune, len(text))
    copy(killLine, text)

    // Point killRing to a newNode, procedure depends on the killring state and
    // append mode.
    if mode == 0 { // Add new node to killRing
        if s.killRing == nil { // if killring is empty, create a new one
            s.killRing = ring.New(1)
        } else if s.killRing.Len() >= KillRingMax { // if killring is "full"
            s.killRing = s.killRing.Next()
        } else { // Normal case
            s.killRing.Link(ring.New(1))
            s.killRing = s.killRing.Next()
        }
    } else {
        if s.killRing == nil { // if killring is empty, create a new one
            s.killRing = ring.New(1)
            s.killRing.Value = []rune{}
        }
        if mode == 1 { // Append to last entry
            killLine = append(s.killRing.Value.([]rune), killLine...)
        } else if mode == 2 { // Prepend to last entry
            killLine = append(killLine, s.killRing.Value.([]rune)...)
        }
    }

    // Save text in the current killring node
    s.killRing.Value = killLine
}

func (s *State) yank(p []rune, text []rune, pos int) ([]rune, int, interface{}, error) {
    if s.killRing == nil {
        return text, pos, rune(esc), nil
    }

    lineStart := text[:pos]
    lineEnd := text[pos:]
    var line []rune

    for {
        value := s.killRing.Value.([]rune)
        line = make([]rune, 0)
        line = append(line, lineStart...)
        line = append(line, value...)
        line = append(line, lineEnd...)

        pos = len(lineStart) + len(value)
        s.refresh(p, line, pos)

        next, err := s.readNext()
        if err != nil {
            return line, pos, next, err
        }

        switch v := next.(type) {
        case rune:
            return line, pos, next, nil
        case action:
            switch v {
            case altY:
                s.killRing = s.killRing.Prev()
            default:
                return line, pos, next, nil
            }
        }
    }

    return line, pos, esc, nil
}

// Prompt displays p and returns a line of user input, not including a trailing
// newline character. An io.EOF error is returned if the user signals end-of-file
// by pressing Ctrl-D. Prompt allows line editing if the terminal supports it.
func (s *State) Prompt(prompt string) (string, error) {
    return s.PromptWithSuggestion(prompt, "", 0)
}

// PromptWithSuggestion displays prompt and an editable text with cursor at
// given position. The cursor will be set to the end of the line if given position
// is negative or greater than length of text. Returns a line of user input, not
// including a trailing newline character. An io.EOF error is returned if the user
// signals end-of-file by pressing Ctrl-D.
func (s *State) PromptWithSuggestion(prompt string, text string, pos int) (string, error) {
    if s.inputRedirected || !s.terminalSupported {
        return s.promptUnsupported(prompt)
    }
    if s.outputRedirected {
        return "", ErrNotTerminalOutput
    }

    s.historyMutex.RLock()
    defer s.historyMutex.RUnlock()

    fmt.Print(prompt)
    p := []rune(prompt)
    var line = []rune(text)
    historyEnd := ""
    prefixHistory := s.getHistoryByPrefix(string(line))
    historyPos := len(prefixHistory)
    historyAction := false // used to mark history related actions
    killAction := 0        // used to mark kill related actions

    defer s.stopPrompt()

    if pos < 0 || len(text) < pos {
        pos = len(text)
    }
    if len(line) > 0 {
        s.refresh(p, line, pos)
    }

restart:
    s.startPrompt()
    s.getColumns()

mainLoop:
    for {
        next, err := s.readNext()
    haveNext:
        if err != nil {
            if s.shouldRestart != nil && s.shouldRestart(err) {
                goto restart
            }
            return "", err
        }

        historyAction = false
        switch v := next.(type) {
        case rune:
            switch v {
            case cr, lf:
                if s.multiLineMode {
                    s.resetMultiLine(p, line, pos)
                }
                fmt.Println()
                break mainLoop
            case ctrlA: // Start of line
                pos = 0
                s.refresh(p, line, pos)
            case ctrlE: // End of line
                pos = len(line)
                s.refresh(p, line, pos)
            case ctrlB: // left
                if pos > 0 {
                    pos -= len(getSuffixGlyphs(line[:pos], 1))
                    s.refresh(p, line, pos)
                } else {
                    fmt.Print(beep)
                }
            case ctrlF: // right
                if pos < len(line) {
                    pos += len(getPrefixGlyphs(line[pos:], 1))
                    s.refresh(p, line, pos)
                } else {
                    fmt.Print(beep)
                }
            case ctrlD: // del
                if pos == 0 && len(line) == 0 {
                    // exit
                    return "", io.EOF
                }

                // ctrlD is a potential EOF, so the rune reader shuts down.
                // Therefore, if it isn't actually an EOF, we must re-startPrompt.
                s.restartPrompt()

                if pos >= len(line) {
                    fmt.Print(beep)
                } else {
                    n := len(getPrefixGlyphs(line[pos:], 1))
                    line = append(line[:pos], line[pos+n:]...)
                    s.refresh(p, line, pos)
                }
            case ctrlK: // delete remainder of line
                if pos >= len(line) {
                    fmt.Print(beep)
                } else {
                    if killAction > 0 {
                        s.addToKillRing(line[pos:], 1) // Add in apend mode
                    } else {
                        s.addToKillRing(line[pos:], 0) // Add in normal mode
                    }

                    killAction = 2 // Mark that there was a kill action
                    line = line[:pos]
                    s.refresh(p, line, pos)
                }
            case ctrlP: // up
                historyAction = true
                if historyPos > 0 {
                    if historyPos == len(prefixHistory) {
                        historyEnd = string(line)
                    }
                    historyPos--
                    line = []rune(prefixHistory[historyPos])
                    pos = len(line)
                    s.refresh(p, line, pos)
                } else {
                    fmt.Print(beep)
                }
            case ctrlN: // down
                historyAction = true
                if historyPos < len(prefixHistory) {
                    historyPos++
                    if historyPos == len(prefixHistory) {
                        line = []rune(historyEnd)
                    } else {
                        line = []rune(prefixHistory[historyPos])
                    }
                    pos = len(line)
                    s.refresh(p, line, pos)
                } else {
                    fmt.Print(beep)
                }
            case ctrlT: // transpose prev glyph with glyph under cursor
                if len(line) < 2 || pos < 1 {
                    fmt.Print(beep)
                } else {
                    if pos == len(line) {
                        pos -= len(getSuffixGlyphs(line, 1))
                    }
                    prev := getSuffixGlyphs(line[:pos], 1)
                    next := getPrefixGlyphs(line[pos:], 1)
                    scratch := make([]rune, len(prev))
                    copy(scratch, prev)
                    copy(line[pos-len(prev):], next)
                    copy(line[pos-len(prev)+len(next):], scratch)
                    pos += len(next)
                    s.refresh(p, line, pos)
                }
            case ctrlL: // clear screen
                s.eraseScreen()
                s.refresh(p, line, pos)
            case ctrlC: // reset
                fmt.Println("^C")
                if s.multiLineMode {
                    s.resetMultiLine(p, line, pos)
                }
                if s.ctrlCAborts {
                    return "", ErrPromptAborted
                }
                line = line[:0]
                pos = 0
                fmt.Print(prompt)
                s.restartPrompt()
            case ctrlH, bs: // Backspace
                if pos <= 0 {
                    fmt.Print(beep)
                } else {
                    n := len(getSuffixGlyphs(line[:pos], 1))
                    line = append(line[:pos-n], line[pos:]...)
                    pos -= n
                    s.refresh(p, line, pos)
                }
            case ctrlU: // Erase line before cursor
                if killAction > 0 {
                    s.addToKillRing(line[:pos], 2) // Add in prepend mode
                } else {
                    s.addToKillRing(line[:pos], 0) // Add in normal mode
                }

                killAction = 2 // Mark that there was some killing
                line = line[pos:]
                pos = 0
                s.refresh(p, line, pos)
            case ctrlW: // Erase word
                if pos == 0 {
                    fmt.Print(beep)
                    break
                }
                // Remove whitespace to the left
                var buf []rune // Store the deleted chars in a buffer
                for {
                    if pos == 0 || !unicode.IsSpace(line[pos-1]) {
                        break
                    }
                    buf = append(buf, line[pos-1])
                    line = append(line[:pos-1], line[pos:]...)
                    pos--
                }
                // Remove non-whitespace to the left
                for {
                    if pos == 0 || unicode.IsSpace(line[pos-1]) {
                        break
                    }
                    buf = append(buf, line[pos-1])
                    line = append(line[:pos-1], line[pos:]...)
                    pos--
                }
                // Invert the buffer and save the result on the killRing
                var newBuf []rune
                for i := len(buf) - 1; i >= 0; i-- {
                    newBuf = append(newBuf, buf[i])
                }
                if killAction > 0 {
                    s.addToKillRing(newBuf, 2) // Add in prepend mode
                } else {
                    s.addToKillRing(newBuf, 0) // Add in normal mode
                }
                killAction = 2 // Mark that there was some killing

                s.refresh(p, line, pos)
            case ctrlY: // Paste from Yank buffer
                line, pos, next, err = s.yank(p, line, pos)
                goto haveNext
            case ctrlR: // Reverse Search
                line, pos, next, err = s.reverseISearch(line, pos)
                s.refresh(p, line, pos)
                goto haveNext
            case tab: // Tab completion
                line, pos, next, err = s.tabComplete(p, line, pos)
                goto haveNext
            // Catch keys that do nothing, but you don't want them to beep
            case esc:
                // DO NOTHING
            // Unused keys
            case ctrlG, ctrlO, ctrlQ, ctrlS, ctrlV, ctrlX, ctrlZ:
                fallthrough
            // Catch unhandled control codes (anything <= 31)
            case 0, 28, 29, 30, 31:
                fmt.Print(beep)
            default:
                if pos == len(line) && !s.multiLineMode && countGlyphs(p)+countGlyphs(line) < s.columns-1 {
                    line = append(line, v)
                    fmt.Printf("%c", v)
                    pos++
                } else {
                    line = append(line[:pos], append([]rune{v}, line[pos:]...)...)
                    pos++
                    s.refresh(p, line, pos)
                }
            }
        case action:
            switch v {
            case del:
                if pos >= len(line) {
                    fmt.Print(beep)
                } else {
                    n := len(getPrefixGlyphs(line[pos:], 1))
                    line = append(line[:pos], line[pos+n:]...)
                }
            case left:
                if pos > 0 {
                    pos -= len(getSuffixGlyphs(line[:pos], 1))
                } else {
                    fmt.Print(beep)
                }
            case wordLeft, altB:
                if pos > 0 {
                    var spaceHere, spaceLeft, leftKnown bool
                    for {
                        pos--
                        if pos == 0 {
                            break
                        }
                        if leftKnown {
                            spaceHere = spaceLeft
                        } else {
                            spaceHere = unicode.IsSpace(line[pos])
                        }
                        spaceLeft, leftKnown = unicode.IsSpace(line[pos-1]), true
                        if !spaceHere && spaceLeft {
                            break
                        }
                    }
                } else {
                    fmt.Print(beep)
                }
            case right:
                if pos < len(line) {
                    pos += len(getPrefixGlyphs(line[pos:], 1))
                } else {
                    fmt.Print(beep)
                }
            case wordRight, altF:
                if pos < len(line) {
                    var spaceHere, spaceLeft, hereKnown bool
                    for {
                        pos++
                        if pos == len(line) {
                            break
                        }
                        if hereKnown {
                            spaceLeft = spaceHere
                        } else {
                            spaceLeft = unicode.IsSpace(line[pos-1])
                        }
                        spaceHere, hereKnown = unicode.IsSpace(line[pos]), true
                        if spaceHere && !spaceLeft {
                            break
                        }
                    }
                } else {
                    fmt.Print(beep)
                }
            case up:
                historyAction = true
                if historyPos > 0 {
                    if historyPos == len(prefixHistory) {
                        historyEnd = string(line)
                    }
                    historyPos--
                    line = []rune(prefixHistory[historyPos])
                    pos = len(line)
                } else {
                    fmt.Print(beep)
                }
            case down:
                historyAction = true
                if historyPos < len(prefixHistory) {
                    historyPos++
                    if historyPos == len(prefixHistory) {
                        line = []rune(historyEnd)
                    } else {
                        line = []rune(prefixHistory[historyPos])
                    }
                    pos = len(line)
                } else {
                    fmt.Print(beep)
                }
            case home: // Start of line
                pos = 0
            case end: // End of line
                pos = len(line)
            case winch: // Window change
                if s.multiLineMode {
                    if s.maxRows-s.cursorRows > 0 {
                        s.moveDown(s.maxRows - s.cursorRows)
                    }
                    for i := 0; i < s.maxRows-1; i++ {
                        s.cursorPos(0)
                        s.eraseLine()
                        s.moveUp(1)
                    }
                    s.maxRows = 1
                    s.cursorRows = 1
                }
            }
            s.refresh(p, line, pos)
        }
        if !historyAction {
            prefixHistory = s.getHistoryByPrefix(string(line))
            historyPos = len(prefixHistory)
        }
        if killAction > 0 {
            killAction--
        }
    }
    return string(line), nil
}

// PasswordPrompt displays p, and then waits for user input. The input typed by
// the user is not displayed in the terminal.
func (s *State) PasswordPrompt(prompt string) (string, error) {
    if !s.terminalSupported {
        return "", errors.New("liner: function not supported in this terminal")
    }
    if s.inputRedirected {
        return s.promptUnsupported(prompt)
    }
    if s.outputRedirected {
        return "", ErrNotTerminalOutput
    }

    defer s.stopPrompt()

restart:
    s.startPrompt()
    s.getColumns()

    fmt.Print(prompt)
    p := []rune(prompt)
    var line []rune
    pos := 0

mainLoop:
    for {
        next, err := s.readNext()
        if err != nil {
            if s.shouldRestart != nil && s.shouldRestart(err) {
                goto restart
            }
            return "", err
        }

        switch v := next.(type) {
        case rune:
            switch v {
            case cr, lf:
                if s.multiLineMode {
                    s.resetMultiLine(p, line, pos)
                }
                fmt.Println()
                break mainLoop
            case ctrlD: // del
                if pos == 0 && len(line) == 0 {
                    // exit
                    return "", io.EOF
                }

                // ctrlD is a potential EOF, so the rune reader shuts down.
                // Therefore, if it isn't actually an EOF, we must re-startPrompt.
                s.restartPrompt()
            case ctrlL: // clear screen
                s.eraseScreen()
                s.refresh(p, []rune{}, 0)
            case ctrlH, bs: // Backspace
                if pos <= 0 {
                    fmt.Print(beep)
                } else {
                    n := len(getSuffixGlyphs(line[:pos], 1))
                    line = append(line[:pos-n], line[pos:]...)
                    pos -= n
                }
            case ctrlC:
                fmt.Println("^C")
                if s.multiLineMode {
                    s.resetMultiLine(p, line, pos)
                }
                if s.ctrlCAborts {
                    return "", ErrPromptAborted
                }
                line = line[:0]
                pos = 0
                fmt.Print(prompt)
                s.restartPrompt()
            // Unused keys
            case esc, tab, ctrlA, ctrlB, ctrlE, ctrlF, ctrlG, ctrlK, ctrlN, ctrlO, ctrlP, ctrlQ, ctrlR, ctrlS,
                ctrlT, ctrlU, ctrlV, ctrlW, ctrlX, ctrlY, ctrlZ:
                fallthrough
            // Catch unhandled control codes (anything <= 31)
            case 0, 28, 29, 30, 31:
                fmt.Print(beep)
            default:
                line = append(line[:pos], append([]rune{v}, line[pos:]...)...)
                pos++
            }
        }
    }
    return string(line), nil
}