Variable: vhdl-testbench-create-files

vhdl-testbench-create-files is a customizable variable defined in vhdl-mode.el.gz.

Value

single

Documentation

Specifies whether new files should be created for the testbench.

testbench entity and architecture are inserted:
  None : in current buffer
  Single file : in new single file
  Separate files: in two separate files
The file names are obtained from variables vhdl-testbench-entity-file-name and vhdl-testbench-architecture-file-name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-testbench-create-files 'single
  "Specifies whether new files should be created for the testbench.
testbench entity and architecture are inserted:
  None          : in current buffer
  Single file   : in new single file
  Separate files: in two separate files
The file names are obtained from variables `vhdl-testbench-entity-file-name'
and `vhdl-testbench-architecture-file-name'."
  :type '(choice (const :tag "None" none)
		 (const :tag "Single file" single)
		 (const :tag "Separate files" separate))
  :group 'vhdl-testbench)