Skip to content

Commit 325e85c

Browse files
author
redsti
committed
remove trailing whitespace
1 parent 031361e commit 325e85c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/buffer/autocomplete.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (b *Buffer) CycleAutocomplete(forward bool) {
6363
if !bytes.Equal(word, activeWord) {
6464
continue
6565
}
66-
66+
6767
b.AutocompleteSingle(c, prevSuggestion)
6868
}
6969

@@ -82,7 +82,7 @@ func (b *Buffer) AutocompleteSingle(c *Cursor, prevSuggestion int) {
8282
if prevSuggestion < len(b.Suggestions) && prevSuggestion >= 0 {
8383
start = end.Move(-util.CharacterCountInString(b.Completions[prevSuggestion]), b)
8484
}
85-
85+
8686
b.Replace(start, end, b.Completions[b.CurSuggestion])
8787
}
8888

0 commit comments

Comments
 (0)