-
Notifications
You must be signed in to change notification settings - Fork 3
/
isearch.go
131 lines (126 loc) · 2.74 KB
/
isearch.go
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
package readline
import (
"context"
"fmt"
"io"
"strings"
"unicode"
"unicode/utf8"
)
func caseInsensitiveStringContains(s, t string) bool {
return strings.Contains(strings.ToUpper(s), strings.ToUpper(t))
}
// CmdISearchBackward is the command that enters incremental-search-mode. (Ctrl-I)
var CmdISearchBackward = NewGoCommand("ISEARCH_BACKWARD", cmdISearchBackward)
func cmdISearchBackward(ctx context.Context, this *Buffer) Result {
var searchBuf strings.Builder
foundStr := ""
searchStr := ""
lastFoundPos := this.History.Len() - 1
this.GotoHead()
update := func() {
for i := this.History.Len() - 1; ; i-- {
if i < 0 {
foundStr = ""
break
}
line := this.History.At(i)
if caseInsensitiveStringContains(line, searchStr) {
foundStr = line
lastFoundPos = i
break
}
}
}
for {
drawStr := fmt.Sprintf("(i-search)[%s]:%s", searchStr, foundStr)
drawWidth := WidthT(0)
for _, ch := range StringToMoji(drawStr) {
w1 := ch.Width()
if drawWidth+w1 >= this.ViewWidth() {
break
}
ch.PrintTo(this.Out)
drawWidth += w1
}
this.eraseline()
io.WriteString(this.Out, ansiCursorOn)
key, err := this.GetKey()
if err != nil {
println(err.Error())
return CONTINUE
}
io.WriteString(this.Out, ansiCursorOff)
this.GotoHead()
switch key {
case "\b":
searchBuf.Reset()
// chop last char
var lastchar rune
for i, c := range searchStr {
if i > 0 {
searchBuf.WriteRune(lastchar)
}
lastchar = c
}
searchStr = searchBuf.String()
update()
case "\r":
this.ViewStart = 0
u := &_Undo{
pos: 0,
text: cell2string(this.Buffer),
}
this.undoes = append(this.undoes, u)
this.Buffer = this.Buffer[:0]
this.Cursor = 0
this.ReplaceAndRepaint(0, foundStr)
return CONTINUE
case "\x03", "\x07", "\x1B":
all, left, _ := this.getView2()
this.puts(all)
this.eraseline()
this.GotoHead()
this.puts(left)
return CONTINUE
case "\x12":
for i := lastFoundPos - 1; ; i-- {
if i < 0 {
i = this.History.Len() - 1
}
if i == lastFoundPos {
break
}
line := this.History.At(i)
if caseInsensitiveStringContains(line, searchStr) && foundStr != line {
foundStr = line
lastFoundPos = i
break
}
}
case "\x13":
for i := lastFoundPos + 1; ; i++ {
if i >= this.History.Len() {
break
}
if i == lastFoundPos {
break
}
line := this.History.At(i)
if caseInsensitiveStringContains(line, searchStr) && foundStr != line {
foundStr = line
lastFoundPos = i
break
}
}
default:
charcode, _ := utf8.DecodeRuneInString(key)
if unicode.IsControl(charcode) {
break
}
searchBuf.WriteRune(charcode)
searchStr = searchBuf.String()
update()
}
}
}