package file_path

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

Source file completion_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
open! Core

module type S = sig
  (** Command-line completion for various path types in [bash]. *)

  val complete_path : string -> string list
  val complete_absolute : string -> string list
  val complete_relative : string -> string list
  val complete_part : string -> string list
end

module type Completion = sig
  module type S = S

  include S
end