package ecaml

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

A minor mode provides optional features that users may enable or disable independently of the choice of major mode. Minor modes can be enabled individually or in combination.

(Info-goto-node "(elisp)Minor Modes")

type t = {
  1. function_name : Symbol.t;
  2. variable_name : Symbol.t;
}
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val is_enabled : t -> bool
val disable : t -> unit
val enable : t -> unit
val abbrev : t

(describe-variable 'abbrev-mode) (describe-function 'abbrev-mode)

val goto_address : t

(describe-variable 'goto-address-mode) (describe-function 'goto-address-mode)

val read_only : t

(describe-variable 'buffer-read-only) (describe-function 'read-only-mode)

val view : t

(describe-variable 'view-mode) (describe-function 'view-mode)

val visual_line : t

(describe-variable 'visual-line-mode) (describe-function 'visual-line-mode)