package pageantty

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

git-pager

CI Status" Coverage Status"

Welcome to git-pager, a small one-module OCaml library for running a Git pager to display diffs and other custom outputs in the terminal.

It is particularly useful for tools that integrate with Git and need to display output exceeding one screen, while respecting user color preferences and Git's configuration.

Hello Pager

Here is a short example using the Git_pager. It will run a pager according to your git config, and allows you to access an Out_channel.t where you can write the output to:

let () =
  Git_pager.run ~f:(fun pager ->
    let write_end = Git_pager.write_end pager in
    Printf.fprintf write_end "Hello, pager!\n")
;;

Published named

To publish this project to opam we're using a packaging naming scheme where pageantty is a namespacing prefix.

pageantty (pronounced: "pageant-T-Y", like "pageant" + the letters "T" and "Y", IPA: /ˈpædʒənt ti waɪ/).

The current Git_pager module is available as the main library of the pageantty.git-pager sub-package.

OCaml

Innovation. Community. Security.