SublimeText / WordHighlight

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

Stops highlighting after folded block #80

Open Gabriel-p opened 6 years ago

Gabriel-p commented 6 years ago

Check the following example

test_word = 'aa'

if True:
    print(
        test_word)

print(test_word)

The last test_word is properly highlighted when the if block es expanded, but not anymore when it is folded.