Function: vhdl-beautify-buffer

vhdl-beautify-buffer is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-beautify-buffer)

Documentation

Beautify buffer by applying indentation, whitespace fixup, alignment, and case fixing to entire buffer. Calls vhdl-beautify-region for the entire buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-beautify-buffer ()
  "Beautify buffer by applying indentation, whitespace fixup, alignment, and
case fixing to entire buffer.  Calls `vhdl-beautify-region' for the entire
buffer."
  (interactive)
  (vhdl-beautify-region (point-min) (point-max))
  (when noninteractive (save-buffer)))