Word search with *
/ #
should support case-sensitive searching
#114
Labels
bug
Something isn't working
*
/ #
should support case-sensitive searching
#114
This is a known issue of #79.
Currently, we always search case insensitively, by prefixing the search regex with
(?i)
.We should consider making this behavior configurable, e.g. depending on
search.smart-case
(which could be seen as the closest equivalent to Vim's:set [no]ignorecase
, although I'm open to suggestions if someone has a better idea).If we stick to the current implementation which prepares a regex, we can prefix it with
(?-i)
instead. This is not tested, but might work.The text was updated successfully, but these errors were encountered: