Variable: evil-digraphs-table-user
evil-digraphs-table-user is a customizable variable defined in
evil-digraphs.el.
Value
nil
Documentation
List of user-defined digraphs.
Entries have the form ((?CHAR1 ?CHAR2) . ?DIGRAPH). That is,
a cons cell of the digraph and its character replacement,
where the digraph is a list of two characters.
See also evil-digraphs-table.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-digraphs.el
(defcustom evil-digraphs-table-user nil
"List of user-defined digraphs.
Entries have the form ((?CHAR1 ?CHAR2) . ?DIGRAPH). That is,
a cons cell of the digraph and its character replacement,
where the digraph is a list of two characters.
See also `evil-digraphs-table'."
:type '(alist :key-type (list character character)
:value-type character))