textmatetags: A simple Haskell program to provide tags for Haskell code completion in TextMate

[ compilers-interpreters, mit, program ] [ Propose Tags ]

A simple Haskell program to provide tags for Haskell code completion in TextMate


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1, 0.0.1.1, 0.0.1.2
Dependencies base (>=4 && <=5), haskell98, process (>=1.0.1.3) [details]
License MIT
Copyright (c) 2011 Alessandro Vermeulen <alessandro.vermeulen@me.com>
Author Alessandro Vermeulen
Maintainer Alessandro Vermeulen <alessandro.vermeulen@me.com>
Category Compilers/Interpreters
Home page https://github.com/spockz/Haskell-Code-Completion-for-TextMate
Uploaded by AlessandroVermeulen at 2011-03-26T20:42:25Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables textmatetags
Downloads 2460 total (9 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 2016-12-28 [all 7 reports]

Readme for textmatetags-0.0.1.2

[back to package description]
TextMate Tags Readme
====================

Author: Alessandro Vermeulen <alessandrovermeulen@me.com>

Installing
----------

install this hackage package. Then add the following *Preference* to your 
Haskell bundle:

----
{	completionCommand = '#! /bin/sh
SRC_DIR=`cat $TM_PROJECT_DIRECTORY/.srcdir`
PRJ_DIR="$TM_PROJECT_DIRECTORY/$SRC_DIR"

cd $PRJ_DIR
~/.cabal/bin/textmatetags $TM_FILEPATH $TM_CURRENT_WORD'; }
----

Or, if you use the Haskell bundle by Jamis Buck
(http://weblog.jamisbuck.org/2005/11/1/haskell-bundle-for-textmate) you can use 
the Haskell bundle provided in this repository. It is a diff to his bundle.

Usage
-----
If your TextMate file is in the root of your source directory, or your TextMate
project has the source folder as its root you are set. If not, place a file
called `.srcdir' in the root of your TextMate project containing on the first
line the location of the source directory relative to the TextMate project
root.

GitHub
------
The github repository for this project can be found at:
  
  https://github.com/spockz/Haskell-Code-Completion-for-TextMate