Path to this page:
NOTICE: This package has been removed from pkgsrc./
wip/hs-hothasktags,
Generates ctags for Haskell
Branch: CURRENT,
Version: 0.3.2,
Package name: hs-hothasktags-0.3.2,
Maintainer: szptvlfnhothasktags 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.
Required to run:[
wip/ghc] [
devel/hs-cmdargs] [
devel/hs-cpphs] [
devel/hs-haskell-src-exts]
Required to build:[
pkgtools/cwrappers]
Master sites:
SHA1: 37035cdb508bea7f667930398a66767104574ce4
RMD160: 124c8d157e265b3f44f7ace635df9350a5738c20
Filesize: 5.152 KB
Version history: (Expand)
- (2020-09-29) Package deleted from pkgsrc
- (2020-01-02) Package has been reborn
- (2019-12-17) Package deleted from pkgsrc
- (2019-12-15) Package has been reborn
- (2019-12-14) Package deleted from pkgsrc
- (2019-06-25) Package has been reborn
CVS history: (Expand)
2015-01-28 19:49:31 by Ryosuke Moro | Files touched by this commit (11) |
Log message:
Remove hs-haskell-src-exts, imported to pkgsrc/devel.
|
2014-07-25 12:54:49 by Ryosuke Moro | Files touched by this commit (10) |
Log message:
Remove hs-cpphs, imported to pkgsrc/devel.
|
2014-06-27 00:01:03 by Ryosuke Moro | Files touched by this commit (2) |
Log message:
Update to 0.3.2
Changes from http://github.com/luqui/hothasktags
0.3.2
- Merge pull request #16 from afcowie/output-option
Add --output command line argument
If specified, write to the named file, otherwise write tags to stdout
as per the current default behaviour.
- Merge pull request #14 from aavogt/master
better command line interface (cmdargs) and bump HSE version
|
2014-05-05 02:03:01 by Ryosuke Moro | Files touched by this commit (74) |
Log message:
Update MAINTAINER address
|
2013-03-09 04:44:31 by Ryosuke Moro | Files touched by this commit (4) |
Log message:
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.
|