Function: vera-backward-same-indent
vera-backward-same-indent is an interactive and byte-compiled function
defined in vera-mode.el.gz.
Signature
(vera-backward-same-indent)
Documentation
Move backward to previous line with same indent.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defun vera-backward-same-indent ()
"Move backward to previous line with same indent."
(interactive)
(let ((pos (point))
(indent (current-indentation)))
(beginning-of-line -0)
(while (and (not (bobp))
(or (looking-at "^\\s-*$")
(> (current-indentation) indent)))
(beginning-of-line -0))
(if (= (current-indentation) indent)
(back-to-indentation)
(message "No preceding line with same indent found in this block")
(goto-char pos))))