pencilCake
pencilCake

Reputation: 53243

How can I set ReSharper to ignore case-sensitivity when I search a file by name?

Is there a way to turn off case-sensitivity in ReSharper when I search for a file by name -I mean by using the short-cut: "CTRL + SHIFT + T" ?

Upvotes: 3

Views: 703

Answers (2)

brgerner
brgerner

Reputation: 4371

If you only use lower-case it should work case-insensitive. But as soon as you write any upper-case the list switches to CamelCase search and you need to type in the right upper-case letters in the right order. You must not skip any upper-case letter.

Upvotes: 3

flipchart
flipchart

Reputation: 6578

Not sure about ReSharper, but if you are using Visual Studio 2010, you could use the build in navigate to functionality (default key binding is ctrl + ,). This search is case insensitive. See http://blogs.msdn.com/b/vseditor/archive/2009/09/22/searching-and-navigating-code-in-visual-studio-2010.aspx for info

Upvotes: 0

Related Questions