package mew_vi

  1. Overview
  2. Docs

Source file mode.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(*
 * mode.ml
 * -----------
 * Copyright : (c) 2019 - 2020, ZAN DoYe <zandoye@gmail.com>
 * Licence   : MIT
 *
 * This file is a part of mew_vi.
 *)


module Name = struct
  type t=
    | Normal
    | Visual
    | Insert
    | Commandline

  let compare= compare
end

include Mew.Mode.Make(Key)(Name)

OCaml

Innovation. Community. Security.