hothasktags: Generates ctags for Haskell, incorporating import lists and qualified imports
hothasktags generates ctags files for Haskell, with knowledge of import lists and qualified imports. It provides a smart go-to-definition for Vim, that almost always gets it right in the presence of multiple names from different modules.
You will want to configure Vim to allow dots in keywords, because hothasktags generates tags for qualified names. You can do this with:
set iskeyword=a-z,A-Z,_,.,39
(The 39 is for the prime character)
Usage is easy, just give hothasktags the names of all the haskell sources you want to index and redirect into a tags file. For example:
find . | egrep '\.hs$' | xargs hothasktags > tags
will index all the hs files under the current directory.
hothasktags does not work with the emacs tag file format. Sorry.
Downloads
- hothasktags-0.3.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
Versions [RSS] | 0.0.1, 0.1.0, 0.1.1, 0.2.0, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8 |
---|---|
Dependencies | base (>=4 && <5), containers, cpphs (>=1.11 && <1.15), filepath, haskell-src-exts (>=1.11 && <1.14) [details] |
License | BSD-3-Clause |
Author | Luke Palmer <lrpalmer@gmail.com> |
Maintainer | Luke Palmer <lrpalmer@gmail.com> |
Category | Development |
Home page | http://github.com/luqui/hothasktags |
Source repo | head: git clone git://github.com/luqui/hothasktags.git |
Uploaded | by LukePalmer at 2013-01-18T18:42:54Z |
Distributions | Debian:0.3.8 |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Executables | hothasktags |
Downloads | 12012 total (34 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs not available [build log] Last success reported on 2015-05-31 [all 7 reports] |