Variable: vhdl-compose-create-files

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

Value

single

Documentation

Specifies whether new files should be created for the new component.

The component's 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-entity-file-name and vhdl-architecture-file-name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-compose-create-files 'single
  "Specifies whether new files should be created for the new component.
The component's 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-entity-file-name' and
`vhdl-architecture-file-name'."
  :type '(choice (const :tag "None" none)
		 (const :tag "Single file" single)
		 (const :tag "Separate files" separate))
  :group 'vhdl-compose)