This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Simple interactive work tracker similar to timeclock.el. | |
;; | |
;; Chris Done 2009, Public domain | |
;; | |
;; Suggested setup: | |
;; ;; Work tracker | |
;; (require 'worktracker) | |
;; ;;; Clock into project | |
;; (global-set-key [f9] 'work-clockin) | |
;; ;;; Clock out of project (done) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Align the import lines in a Haskell file. | |
;; Copyright (C) 2010 Chris Done <[email protected]> | |
;; This module is intended for Haskell mode users, but is | |
;; independent of Haskell mode. | |
;; Example usage: | |
;; (require 'haskell-align-imports) | |
;; (define-key haskell-mode-map (kbd "C-c ." 'haskell-align-imports) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if exists('b:did_my_haskell_plugin') | |
finish | |
endif | |
let b:did_my_haskell_plugin = 1 | |
so <sfile>:h/program.vim | |
setl isk+=' et sts=4 sw=4 | |
setl nospell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hsdns: ADNS | |
hsdns: ADNS.Base | |
hsdns: ADNS.Endian | |
hsdns: ADNS.Resolver | |
cv-combinators: AI.CV.ImageProcessors | |
HOpenCV: AI.CV.OpenCV.CV | |
HOpenCV: AI.CV.OpenCV.CxCore | |
HOpenCV: AI.CV.OpenCV.HighGui | |
HOpenCV: AI.CV.OpenCV.Types | |
hnn: AI.HNN.Layer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; A function for observing the currently installed Haskell | |
;; packages. | |
;; Copyright (C) 2010 Chris Done <[email protected]> | |
;; This module is intended for Elisp programmers to use in other | |
;; packages that involve inspecting the currently installed | |
;; packages and modules. | |
;; Example usage: | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# OPTIONS -Wall #-} | |
module Main where | |
import Network | |
import System.Console.CmdArgs | |
import System.Posix | |
import Hulk.Config (getConfig) | |
import Hulk.Options (options,optionsConf) | |
import Hulk.Server (start) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Char | |
import Data.List | |
import Control.Monad.State | |
import qualified Data.Map as M | |
data Token = Str Char String | |
| Code String | |
deriving Show | |
main = interact horrify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Ord | |
import Data.Char | |
import Data.List | |
import Control.Monad.State | |
import qualified Data.Map as M | |
data Token = Str Char String | |
| Code String | |
deriving Show | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Language.Lisk.Parser2 where | |
------------------------------------------------------------------------------ | |
-- S-expression parser (Lisk tokenizer) | |
-- | |
import Control.Applicative | |
import Text.Parsec hiding ((<|>),many,token,optional,spaces) | |
import Text.Parsec.Combinator hiding (optional) |
OlderNewer