hdevtools 0.1.6.0-1 source package in Ubuntu

Changelog

hdevtools (0.1.6.0-1) unstable; urgency=medium

  * New upstream release

 -- Sean Whitton <email address hidden>  Sun, 03 Sep 2017 14:27:25 -0700

Upload details

Uploaded by:
Debian Haskell Group
Uploaded to:
Sid
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
hdevtools_0.1.6.0-1.dsc 2.1 KiB 375300cad8923e9db827b7bfcafe65e3d1d70b7a3b92a5f623f8550325b75b4f
hdevtools_0.1.6.0-1.debian.tar.xz 3.4 KiB 0c793b84a76cf8f5e61cd8ccfc22a4256907d6118677bf8dd9e4b54b8865f0ad
hdevtools_0.1.6.0.orig.tar.gz 21.6 KiB 459666909c58ae8a326446fd97bc256681a746d91fda8314dd0194bf3438e27a

Available diffs

No changes file available.

Binary packages built by this source

hdevtools: GHC powered daemon for fast Haskell development

 hdevtools is a backend for text editor plugins, to allow for things such as
 syntax and type checking of Haskell code, and retrieving type information, all
 directly from within your text editor.
 .
 The advantage that hdevtools has over ghc-mod is that it runs silently
 in a persistent background process, and therefore is able to keeps all of your
 Haskell modules and dependent libraries loaded in memory. This way, when you
 change only a single source file, only it needs to be reloaded and rechecked,
 instead of having to reload everything.
 .
 This makes hdevtools very fast for checking syntax and type errors (runs
 just as fast as the ":reload" command in GHCi).
 .
 In fact, syntax and type checking is so fast, that you can safely enable auto
 checking on every save. Even for huge projects, checking is nearly instant.
 .
 In addition to checking Haskell source code for errors, `hdevtools` has tools
 for getting info about identifiers, and getting type information for snippets
 of code.