Reputation: 1317
In my installation of Visual Studio Code on Windows, when I click on a word, all occurrences of that word will be high lighted, regardless of their case!
As you see in this picture the click and select all feature of the visual studio is case-insensitive by default!
How can I make it case-sensitive so that it only highlights case-sensitive? e.g. to highlight only "case", not "CASE" or "caSe" when we click on "case"
Upvotes: 0
Views: 366
Reputation: 28673
This is controlled by the Match Case
button in the Find dialog.
You can toggle this with Alt+C
.
Upvotes: 1