├── .gitignore ├── LICENSE ├── Main.hs ├── Makefile ├── Setup.lhs └── hothasktags.cabal /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | tags 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luqui/hothasktags/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luqui/hothasktags/HEAD/Main.hs -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luqui/hothasktags/HEAD/Makefile -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luqui/hothasktags/HEAD/Setup.lhs -------------------------------------------------------------------------------- /hothasktags.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luqui/hothasktags/HEAD/hothasktags.cabal --------------------------------------------------------------------------------