MarcWeber / hasktags

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

Feature Request: Generate base imports tags #19

Open codygman opened 9 years ago

codygman commented 9 years ago

For instance, if you have:

import Data.List (dropWhile)

Tags are generated from $GHC_SRC_DIR/libraries/base/GHC/List.lhs and appended to the rest of the users tags.

I'm not familiar with hasktags and I'm not sure how something like this would be handled:

import Data.List (dropWhile)
import qualified Data.ByteString.Char8 (dropWhile)

Are both etags and ctags generated intelligent enough to handle this case?