Function: indent-rigidly-right
indent-rigidly-right is an interactive and byte-compiled function
defined in indent.el.gz.
Signature
(indent-rigidly-right BEG END)
Documentation
Indent all lines between BEG and END rightward by one space.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/indent.el.gz
(defun indent-rigidly-right (beg end)
"Indent all lines between BEG and END rightward by one space."
(interactive "r")
(indent-rigidly--pop-undo)
(indent-rigidly
beg end
(if (eq (current-bidi-paragraph-direction) 'right-to-left) -1 1)))