Closed gety9 closed 9 months ago
Orderless has a user option called orderless-smart-case
which is set to t
by default, which means "match case insensitively if the input is all lowercase; match case sensitively if there are any uppercase letters in the input". (This variable is patterned after the similar search-upper-case
option for isearch.) If you set orderless-smart-case
to nil
, then orderless does no special case-sensitivity processing and case-sensitivity is determined by the values of completion-ignore-case
, read-file-name-completion-ignore-case
and read-buffer-completion-ignore-case
.
Given that you use orderless, you could have found this option with C-h v case orderless
. 😛
thank you!
Thanks for amazing project.
Do i need anything else to make match case insensitive other than
Cause it's not working for me for Upper case letters. I mean if i have file "/.../Tech.el" and type "tech" it matched, but if i have file "/.../styles.el" and type "Styles" it doesn't match.
Full config