Skip to content

Commit ce2c5eb

Browse files
committed
v.util: bump max_suggestions_limit to 200, to account for windows
1 parent d396461 commit ce2c5eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎vlib/v/util/suggestions.v‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn new_suggestion(wanted string, possibilities []string, params SuggestionPa
4848
return s
4949
}
5050

51-
const max_suggestions_limit = $d('max_suggestions_limit', 140)
51+
const max_suggestions_limit = $d('max_suggestions_limit', 200)
5252

5353
// add adds the `val` to the list of known possibilities of the suggestion.
5454
// It calculates the similarity metric towards the wanted value.

0 commit comments

Comments
 (0)