-
-
Notifications
You must be signed in to change notification settings - Fork 127
Description
Abstract
Implement a case-insensitive search, a config key to select the default search case-sensitivity, and a way to change the case-sensitivity while in the search mode.
As a bonus, a "smart-case" search (case-insensitive if the input is lowercase, case-sensitive if the input has an uppercase character) would be useful too.
Motivation
Contour is currently only able to do a case-sensitive search, which makes it significantly harder to find things where the case is not known.
Specification
I'm not sure about the details, if it should be a keybind action that changes the case-sensitivity, or a special sequence like the way vim does it (\c
anywhere in the search string). This should probably require an indicator in the status bar.
It seems clear to me is that it should be switchable once already in the search mode, and not only be a separate keybind action that starts a -separate- case-insensitive search mode. It might still be useful to have a case-sensitive: true/false
option on the SearchReverse
action for people that want to have that, but it isn't my use-case.