Using GREP to mark everything that isn't a specific word
I'd like to use a GREP style to mark everything, except certain words. So for example:
This is ignore an example ignore text
should be marked like so:
This is ignore an example ignore text
Normally, I'd just have two rules and mark the words I don't want included, but the style I want to apply hides the selected words by setting their size to 0.1 - which can't be reset by another style (the new style would force its size upon it, instead of resetting it).
This is as far as I have come, and this already took me a day to figure out:
.*(?<=[^ignore]).*
It works if the word to ignore is not surrounded by anything. So if the text is just "ignore" it will stay, everything else will be marked. Any help would be appreciated!

