File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ TBD
2+ ==============
3+
4+ Bug Fixes
5+ --------
6+ * Fix CamelCase fuzzy matching.
7+
8+
191.45.0 (2026/01/20)
210==============
311
Original file line number Diff line number Diff line change @@ -961,7 +961,7 @@ def find_matches(
961961 regex = ".{0,3}?" .join (map (re .escape , text ))
962962 pat = re .compile (f'({ regex } )' )
963963 under_words_text = [x for x in text .split ('_' ) if x ]
964- case_words_text = re .split (case_change_pat , text )
964+ case_words_text = re .split (case_change_pat , last )
965965
966966 for item in collection :
967967 r = pat .search (item .lower ())
@@ -980,7 +980,7 @@ def find_matches(
980980 completions .append (item )
981981 continue
982982
983- case_words_item = re .split (case_change_pat , item . lower () )
983+ case_words_item = re .split (case_change_pat , item )
984984 occurrences = 0
985985 for elt_word in case_words_text :
986986 for elt_item in case_words_item :
You can’t perform that action at this time.
0 commit comments