Variable: vhdl-project-autoload

vhdl-project-autoload is a customizable variable defined in vhdl-mode.el.gz.

Value

(startup)

Documentation

Automatically load project setups from files.

All project setup files that match the file names specified in option vhdl-project-file-name are automatically loaded. The project of the
(alphabetically) last loaded setup of the first vhdl-project-file-name
entry is activated. A project setup file can be obtained by exporting a project (see menu).
  At startup: project setup file is loaded at Emacs startup.

Aliases

vhdl-project-auto-load (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-project-autoload '(startup)
  "Automatically load project setups from files.
All project setup files that match the file names specified in option
`vhdl-project-file-name' are automatically loaded.  The project of the
\(alphabetically) last loaded setup of the first `vhdl-project-file-name'
entry is activated.
A project setup file can be obtained by exporting a project (see menu).
  At startup: project setup file is loaded at Emacs startup."
  :type '(set (const :tag "At startup" startup))
  :group 'vhdl-project)