Function: evil-read-digraph-char

evil-read-digraph-char is an interactive and byte-compiled function defined in evil-common.el.

Signature

(evil-read-digraph-char &optional HIDE-CHARS)

Documentation

Read two keys from keyboard forming a digraph.

This function creates an overlay at (point), hiding the next HIDE-CHARS characters. HIDE-CHARS defaults to 1.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-read-digraph-char (&optional hide-chars)
  "Read two keys from keyboard forming a digraph.
This function creates an overlay at (point), hiding the next
HIDE-CHARS characters.  HIDE-CHARS defaults to 1."
  (interactive)
  (let ((overlay (make-overlay
                  (point) (min (+ (point) (or hide-chars 1))
                               (point-max)))))
    (evil-read-digraph-char-with-overlay overlay)))