package oxbow

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

Source file keymap.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
open! Ppx_yojson_conv_lib.Yojson_conv

type t =
  | Bind of
      { keybind : string
      ; command : Command.t
      ; mode : string option
      } [@name "bind"]
  | Unbind of
      { keybind : string
      ; mode : string option
      } [@name "unbind"]
[@@deriving yojson]