-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathisearch.go
147 lines (136 loc) · 3.25 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package multiline
import (
"context"
"fmt"
"io"
"strings"
"unicode"
"unicode/utf8"
"github.com/nyaosorg/go-readline-ny"
)
func caseInsensitiveStringContains(s, t string) bool {
return strings.Contains(strings.ToUpper(s), strings.ToUpper(t))
}
const (
ansiCursorOff = "\x1B[?25l"
// On Windows 8.1, the cursor is not shown immediately
// without SetConsoleCursorPosition by `ESC[u`
ansiCursorOn = "\x1B[?25h\x1B[s\x1B[u"
)
// NewLineMarkForIncrementalSearch is the string used instead of "\n". This variable is not guaranteed to remain valid in the future.
var NewLineMarkForIncrementalSearch = "\u21B2 "
func (m *Editor) cmdISearchBackward(ctx context.Context, this *readline.Buffer) readline.Result {
var searchBuf strings.Builder
foundStr := ""
searchStr := ""
lastFoundPos := this.History.Len() - 1
moveOriginalLine := m.GotoEndLine()
defer func() {
io.WriteString(this.Out, "\x1B[2K")
moveOriginalLine()
this.Out.Flush()
this.RepaintLastLine()
}()
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,
strings.ReplaceAll(foundStr, "\n", NewLineMarkForIncrementalSearch))
drawWidth := readline.WidthT(0)
this.Out.Write([]byte{'\r'})
for _, ch := range readline.StringToMoji(drawStr) {
w1 := ch.Width()
if drawWidth+w1 >= this.ViewWidth() {
break
}
ch.PrintTo(this.Out)
drawWidth += w1
}
io.WriteString(this.Out, "\x1B[K"+ansiCursorOn)
key, err := this.GetKey()
if err != nil {
println(err.Error())
return readline.CONTINUE
}
io.WriteString(this.Out, ansiCursorOff)
switch key {
case "\b", "\x7F":
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":
m.after = func(string) bool {
m.up(m.csrline - m.headline)
m.lines = strings.Split(foundStr, "\n")
m.csrline = len(m.lines) - 1
m.adjustHeadline()
lfCount := m.printAfter(m.headline)
lfCount -= (m.csrline - m.headline)
m.up(lfCount)
m.LineEditor.Cursor = 9999
return true
}
return readline.ENTER
case "\x03", "\x07", "\x1B":
return readline.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()
}
}
}