package fzf

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

Tiebreak instructs Fzf how to sort lines when the "matching scores" are tied. See fzf(1) for more documentation.

type t =
  1. | Length
    (*

    Prefers line with shorter length

    *)
  2. | Begin
    (*

    Prefers line with matched substring closer to the beginning

    *)
  3. | End
    (*

    Prefers line with matched substring closer to the end

    *)
  4. | Index
    (*

    Prefers line that appeared earlier in the input stream (default)

    *)
include Core.Stringable.S with type t := t
val of_string : string -> t
val to_string : t -> string