align-text: A simple unix filter to align text on specified substrings

[ mit, program, text ] [ Propose Tags ]

A simple unix filter to align text on specified substrings


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Dependencies base (>=4.7 && <4.8), optparse-applicative (==0.11.0.1), text [details]
License MIT
Author Daniel Choi
Maintainer dhchoi@gmail.com
Category Text
Home page https://github.com/danchoi/align-text
Uploaded by DanielChoi at 2015-01-13T14:32:41Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables align
Downloads 1841 total (6 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2015-05-18 [all 10 reports]

Readme for align-text-0.1.0.1

[back to package description]

align

Simple unix filter to align text on specified substrings.

align can be run from inside Vim or other editors with custom key bindings to align lines of code neatly on programming language operators like =>, ::, @=?, =, +, etc.

Installation

You must first have the Haskll platform installed on your system:

cabal update
cabal install align-text

This will likely install the align executable in ~/.cabal/bin, which should be on your PATH.

Usage

align has two modes: Serial mode and Alternative mode.

Serial mode

Assume you want to align this text:

input.sample:

    "parseKeyExpr" ~: [ObjectKey "item"] @=? parseKeyExpr "item"
  , "ngEvalToString" ~: "apple" @=? ngEvalToString testContext1 "item" 
  , "ngEvalToString2" ~: "apple" @=? ngEvalToString testContext2 "item.name" 

You can do so with this command:

align '~: @=?' < input.sample

which outputs:

    "parseKeyExpr"    ~: [ObjectKey "item"] @=? parseKeyExpr "item"
  , "ngEvalToString"  ~: "apple"            @=? ngEvalToString testContext1 "item"
  , "ngEvalToString2" ~: "apple"            @=? ngEvalToString testContext2 "item.name"

align takes an argument list of strings to align the text and performs the alignment operation on the text it gets from STDIN.

align will only match each alignment string once, so if that string occurs multiple times in a line, you need to specify it than many times in the argument.

Alternative mode

Assume you want to align this text:

input2.sample:

sendmailCustom :: FilePath        -- ^ sendmail executable path
  -> [String]     -- ^ sendmail command-line options
  -> L.ByteString -- ^ mail message as lazy bytestring
   -> IO ()

Here you want to align :: and -> in the same column position. To do this use the -a flag:

align -a -- '-> ::' < input2.sample

(FYI you need to add the -- argument to prevent the -> string, which starts with a dash, from being parsed as a command option.)

This outputs:

sendmailCustom :: FilePath        -- ^ sendmail executable path
               -> [String]     -- ^ sendmail command-line options
               -> L.ByteString -- ^ mail message as lazy bytestring
               -> IO ()

You can also align the comment (beginning with --) by using a pipeline:

cat input2.sample | align -a -- '-> ::' | align -- '--'

which outputs:

sendmailCustom :: FilePath     -- ^ sendmail executable path
               -> [String]     -- ^ sendmail command-line options
               -> L.ByteString -- ^ mail message as lazy bytestring
               -> IO ()

How to use align in Vim

To use align from Vim, you can select some text, and then use a Vim filter command:

!align '~: @=?'

For common alignment operations, you can make Vim commands and put them in your .vimrc, e.g.:

command! -range AlignHaskellTypeAnnotation :<line1>,<line2>!align '::'
vnoremap <leader>h :AlignHaskellTypeAnnotation<cr>

command! -range AlignHaskellTest :<line1>,<line2>!align '~: @=?'
vnoremap <leader>H :AlignHaskellTest<cr>

Author

Daniel Choi https://github.com/danchoi