Changes between Version 14 and Version 15 of CodeTagsPlugin


Ignore:
Timestamp:
Jul 3, 2007, 10:01:33 AM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeTagsPlugin

    v14 v15  
    6262}}}
    6363
     64= Word Boundaries Patch =
     65If you don't want to match comment lines containing your tags as subwords (e.g. DEBUG contains BUG and would normally match), you can apply this patch to {{{indexer.py}}}:
     66
     67{{{
     68#!diff
     6930c30
     70<             p.append(re.escape(word))
     71---
     72>             p.append(r'\b' + re.escape(word) + r'\b')
     73}}}
    6474
    6575= Feature Request =