Explorar o código

[display] fix off-by-1 error in completion item handling

Simon Krajewski %!s(int64=6) %!d(string=hai) anos
pai
achega
2fd064a704
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/context/display/displayException.ml

+ 1 - 1
src/context/display/displayException.ml

@@ -73,7 +73,7 @@ let filter_somehow ctx items subject kind po =
 	in
 	let rec loop items index =
 		match items with
-		| _ when DynArray.length ret > !max_completion_items ->
+		| _ when DynArray.length ret >= !max_completion_items ->
 			()
 		| item :: items ->
 			let name = String.lowercase (get_filter_name item) in