Regarding the find-in-note feature, it uses CodeMirror’s built-in search API.
So, I guess it’s a bug of CM or by design.
I’m planning to migrate CM to v6 in the future and let’s see how it behaves on it.
Thanks for letting me know!
Maybe an easy fix on your side if CM v6 has not fixed it is to convert the search query to lowercase behind the scenes. So if the user searches for “Test”, you send “test” to the search API.
Nice trick!
But I think that when people type “test” they may expect the result contains “test”,“Test”,“TEST”,“TeSt”…
else when type “Test”, they really want the “Test” without others.