Function: indent-rigidly-left

indent-rigidly-left is an interactive and byte-compiled function defined in indent.el.gz.

Signature

(indent-rigidly-left BEG END)

Documentation

Indent all lines between BEG and END leftward by one space.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/indent.el.gz
(defun indent-rigidly-left (beg end)
  "Indent all lines between BEG and END leftward by one space."
  (interactive "r")
  (indent-rigidly--pop-undo)
  (indent-rigidly
   beg end
   (if (eq (current-bidi-paragraph-direction) 'right-to-left) 1 -1)))