Function: vhdl-template-default-indent
vhdl-template-default-indent is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-template-default-indent)
Documentation
Insert nothing and indent.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-default-indent ()
"Insert nothing and indent."
(interactive)
(insert " ")
(unexpand-abbrev)
(backward-word-strictly 1)
(vhdl-case-word 1)
(forward-char 1)
(indent-according-to-mode))