Module Ecaml.Minor_mode

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 = {
function_name : Symbol.t;
variable_name : Symbol.t;
}
include sig ... end
val sexp_of_t : t ‑> Base.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)