Variable: vhdl-indent-comment-like-next-code-line

vhdl-indent-comment-like-next-code-line is a customizable variable defined in vhdl-mode.el.gz.

Value

t

Documentation

Non-nil means comment lines are indented like the following code line.

Otherwise, comment lines are indented like the preceding code line. Indenting comment lines like the following code line gives nicer indentation when comments precede the code that they refer to.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-indent-comment-like-next-code-line t
  "Non-nil means comment lines are indented like the following code line.
Otherwise, comment lines are indented like the preceding code line.
Indenting comment lines like the following code line gives nicer indentation
when comments precede the code that they refer to."
  :type 'boolean
  :version "24.3"
  :group 'vhdl-misc)