We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b88300e commit 79fe4aeCopy full SHA for 79fe4ae
internal/action/actions.go
@@ -911,6 +911,11 @@ func (h *BufPane) Autocomplete() bool {
911
return false
912
}
913
914
+ if b.HasSuggestions {
915
+ b.CycleAutocomplete(true)
916
+ return true
917
+ }
918
+
919
if h.Cursor.X == 0 {
920
921
@@ -921,10 +926,6 @@ func (h *BufPane) Autocomplete() bool {
926
922
927
923
928
924
- if b.HasSuggestions {
925
- b.CycleAutocomplete(true)
- return true
- }
929
return b.Autocomplete(buffer.BufferComplete)
930
931
0 commit comments