Case-insesitive search

How can I search without taking care of case sensitivity?

Best done using Regular Expressions (lots of documentation can be found about this), and enclosing the case sensitive part in [].
E.g.
[Dd]esign will give you design and Design as result.

1 Like

Thanks for reply.
I’ve found easier way. Operator: ignore-case

There’s also this button:

Screenshot 2021-02-10 at 12.36.04

3 Likes