Function: rectangle-right-char

rectangle-right-char is an interactive and byte-compiled function defined in rect.el.gz.

Signature

(rectangle-right-char &optional N)

Documentation

Like right-char but steps into wide chars and moves past EOL.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/rect.el.gz
(defun rectangle-right-char (&optional n)
  "Like `right-char' but steps into wide chars and moves past EOL."
  (interactive "p") (rectangle--*-char #'right-char n #'left-char))