MarcWeber / hasktags

Produces ctags "tags" and etags "TAGS" files for Haskell programs
Other
127 stars 32 forks source link

hasktags gets confused by equals signs in comments #20

Closed thomie closed 7 years ago

thomie commented 8 years ago

For the following program:

data Foo
   = Bar       -- abc = def
   | Baz

hasktags generates the following tags file:

Bar Test.hs 2
Foo Test.hs 1

Note that Baz is missing.