typeof: Small script for inferring types

[ bsd3, development, program ] [ Propose Tags ]

A script to infer and insert type declarations in Haskell source, callable from your editor. Bindings exist to emacs and vim.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
small_base

Choose the new smaller, split-up base package.

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1, 0.1.2
Dependencies base, process [details]
License BSD-3-Clause
Author Don Stewart
Maintainer Don Stewart
Category Development
Uploaded by DonaldStewart at 2008-06-17T00:21:36Z
Distributions NixOS:0.1.2
Reverse Dependencies 1 direct, 0 indirect [details]
Executables typeof
Downloads 2486 total (12 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-01-03 [all 7 reports]

Readme for typeof-0.1.1

[back to package description]
typeof: a script for inserting Haskell types in source code

== Building ==

    runhaskell Setup.lhs configure
    runhaskell Setup.lhs build
    runhaskell Setup.lhs install

== Use ==

The script accepts two inputs:
        
   command line argument 1: the file name to look in.
   stdin:                   the line containing the top level type
                                    declaration who's type you

the output is the type declaration for the value you requested, which
can be spliced back in to your source file.

VIM:

You can run the script from vim directly by adding the following to your
.vimrc file:
   
    :map ty yy:.!typeof -fbang-patterns %^Mp

Now, when you position your cursor over a top level declaration,
hitting:

    :ty

will insert the type declaration on the line above the one the cursor is
on.

EMACS:

In emacs add the following to your .emacs.el file:

(global-set-key (kbd "C-c t")
    (lambda () (interactive)
        (progn
            (save-buffer)
            (move-beginning-of-line nil)
            (call-process-region
                (line-beginning-position)
                (line-end-position)
                "typeof"
                nil
                t
                nil
                (buffer-file-name)))))

Then you can use C-c t to run insert the type declaration.

== Author ==

Don Stewart
http://www.cse.unsw.edu.au/~dons
Fri Dec 15 18:02:39 EST 2006