Skip to content

Commit d2629f7

Browse files
Update components/HelpStatus.go
Co-authored-by: ccoVeille <[email protected]>
1 parent b878c8c commit d2629f7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: components/HelpStatus.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ func (status *HelpStatus) UpdateText(binds []keymap.Bind) {
2727

2828
for i, key := range binds {
2929

30-
newtext += key.Cmd.String()
30+
newText += key.Cmd.String()
3131

32-
newtext += ": "
32+
newText += ": "
3333

34-
newtext += key.Key.String()
34+
newText += key.Key.String()
3535

3636
islast := i == len(binds)-1
3737

3838
if !islast {
39-
newtext += " | "
39+
newText += " | "
4040
}
4141

4242
}
4343

44-
status.SetText(newtext)
44+
status.SetText(newText)
4545
}
4646

4747
func (status *HelpStatus) SetStatusOnTree() {

0 commit comments

Comments
 (0)