We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b878c8c commit d2629f7Copy full SHA for d2629f7
components/HelpStatus.go
@@ -27,21 +27,21 @@ func (status *HelpStatus) UpdateText(binds []keymap.Bind) {
27
28
for i, key := range binds {
29
30
- newtext += key.Cmd.String()
+ newText += key.Cmd.String()
31
32
- newtext += ": "
+ newText += ": "
33
34
- newtext += key.Key.String()
+ newText += key.Key.String()
35
36
islast := i == len(binds)-1
37
38
if !islast {
39
- newtext += " | "
+ newText += " | "
40
}
41
42
43
44
- status.SetText(newtext)
+ status.SetText(newText)
45
46
47
func (status *HelpStatus) SetStatusOnTree() {
0 commit comments