Function: vhdl-back-to-indentation
vhdl-back-to-indentation is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-back-to-indentation)
Documentation
Move point to the first non-whitespace character on this line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-back-to-indentation ()
"Move point to the first non-whitespace character on this line."
(interactive)
(beginning-of-line 1)
(skip-syntax-forward " " (vhdl-point 'eol)))