Function: vhdl-template-paired-parens

vhdl-template-paired-parens is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-template-paired-parens)

Documentation

Insert a pair of round parentheses, placing point between them.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;  VHDL templates

(defun vhdl-template-paired-parens ()
  "Insert a pair of round parentheses, placing point between them."
  (interactive)
  (insert "()")
  (backward-char))