Function: evil-rot13

evil-rot13 is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-rot13 BEG END &optional TYPE)

Documentation

ROT13 encrypt text.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-rot13 (beg end type)
  "ROT13 encrypt text."
  (if (eq type 'block)
      (evil-apply-on-block #'rot13-region beg end nil)
    (rot13-region beg end)))