Function: vhdl-line-expand
vhdl-line-expand is an interactive and byte-compiled function defined
in vhdl-mode.el.gz.
Signature
(vhdl-line-expand &optional ARG)
Documentation
Hippie-expand current line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-line-expand (&optional arg)
"Hippie-expand current line."
(interactive "P")
(require 'hippie-exp)
(let ((case-fold-search t) (case-replace nil)
(hippie-expand-try-functions-list
'(try-expand-line try-expand-line-all-buffers)))
(hippie-expand arg)))