view.find_all
supports the optional flag LITERAL
. What does LITERAL
mean?
matches = self.view.find_all('the',
sublime.LITERAL
)
I thought LITERAL
is the same as whole word search to literally find all matches for the
, but it also finds a match for thee
.