Function: indent-rigidly-left-to-tab-stop

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

Signature

(indent-rigidly-left-to-tab-stop BEG END)

Documentation

Indent all lines between BEG and END leftward to a tab stop.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/indent.el.gz
(defun indent-rigidly-left-to-tab-stop (beg end)
  "Indent all lines between BEG and END leftward to a tab stop."
  (interactive "r")
  (indent-rigidly--pop-undo)
  (let* ((current (indent-rigidly--current-indentation beg end))
	 (rtl (eq (current-bidi-paragraph-direction) 'right-to-left))
	 (next (indent-next-tab-stop current (if rtl nil 'prev))))
    (indent-rigidly beg end (- next current))))