package line-up-words

  1. Overview
  2. Docs
Align words in an intelligent way

Install

Dune Dependency

Authors

Maintainers

Sources

line-up-words-v0.15.0.tar.gz
sha256=060f154b237eda801a19811513d56ac818c6f90f52c82721d6f203b022ed2a19

Description

line-up-words is a small command line tool that tries to align words in a sequence of lines in an intelligent way.

It comes as a binary and an emacs mode.

Published: 21 Mar 2022

README

line-up-words - Align words in an intelligent way

line-up-words is a small command line tool that tries to align words in a sequence of lines in an intelligent way. It comes as a command line tool and an emacs mode.

Example

$ cat file.ml
{ name : string
; dir : Path.t
; version : string
; description : string
; archives : Path.t list Mode.Dict.t
; plugins : Path.t list Mode.Dict.t
; jsoo_runtime : string list
; requires : t list
; ppx_runtime_deps : t list
$ line-up-words < file.ml
{ name             : string
; dir              : Path.t
; version          : string
; description      : string
; archives         : Path.t list Mode.Dict.t
; plugins          : Path.t list Mode.Dict.t
; jsoo_runtime     : string list
; requires         : t list
; ppx_runtime_deps : t list

Emacs mode

The emacs mode defines the interactive function line-up-words. For instance, to bind it to C-c a, add this to your ~/.emacs:

(require 'line-up-words)
(global-set-key "\C-c a" 'line-up-words)

Installation

The easiest way to install the line-up-words command line tool is via the opam package manager. Once you have installed opam, you can run the following command to install line-up-words:

$ opam install line-up-words

Dependencies (8)

  1. pcre
  2. dune >= "2.0.0"
  3. re2 >= "v0.15" & < "v0.16"
  4. ppx_jane >= "v0.15" & < "v0.16"
  5. patience_diff >= "v0.15" & < "v0.16"
  6. core_unix >= "v0.15" & < "v0.16"
  7. core >= "v0.15" & < "v0.16"
  8. ocaml >= "4.08.0"

Dev Dependencies

None

Used by

None

Conflicts

None