Function: rectangle-forward-char
rectangle-forward-char is an interactive and byte-compiled function
defined in rect.el.gz.
Signature
(rectangle-forward-char &optional N)
Documentation
Like forward-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-forward-char (&optional n)
"Like `forward-char' but steps into wide chars and moves past EOL."
(interactive "p") (rectangle--*-char #'forward-char n #'backward-char))