Sublime Forum

Case sensitivity for find_under and find_under_prev?

#1

Hi!

I just found out about the awesome way of binding find_under and find_under_prev to a keyboard shortcut and using it all together with the WordHighlight plugin.

Like this:

{
“keys”: “alt+down”],
“command”: “find_under”
}, {
“keys”: “alt+up”],
“command”: “find_under_prev”
}

The only thing that bugs me, tho, is that this search is not case sensitive. Is there any way to pass some arguments to these commands to make the search case sensitive?

Many thanks!

0 Likes

#2

Got it! Seems like these commands uses the options from the find-popup, so to activate case sensitivity one could simply use Alt + C. Also if you want to limit the search to whole words, be sure to check the Whole word-setting (Alt + W).

0 Likes