SublimeText / WordHighlight

Highlight all copies of the currently selected word.
MIT License
180 stars 24 forks source link

WordHighlight key-sensitive #86

Open feland207 opened 1 year ago

feland207 commented 1 year ago

This not an issue but an enhancement that would improve the user experience.

Currently word highlight is key-sensitive. Please note in the example below 'text' is highlighted but not 'Text'

sample

### Expected behavior: highlight both 'text' and 'Text'

I was searching over but couldn't find any specific to this enhancement. This could be done with a package setting i.e:

_"highlight_keysensitive" : false

### My environment: Sublime Text version: 4143 MacOS ventura 13.2.1

### Word Highlight.sublime-settings { "draw_outlined" : true, "mark_occurrences_on_gutter" : true, "highlight_when_selection_is_empty" : false, "highlight_word_under_cursor_when_selection_is_empty" : true, }

simonspa commented 1 year ago

there is

    "case_sensitive": false,

in the settings which for me works and does exactly what you're looking for.