Variable: vhdl-file-name-case
vhdl-file-name-case is a customizable variable defined in
vhdl-mode.el.gz.
Value
identity
Documentation
Specifies how to change case for obtaining file names.
When deriving a file name from a VHDL unit name, case can be changed as
follows:
As Is: case is not changed (taken as is)
Lower Case: whole name is changed to lower case
Upper Case: whole name is changed to upper case
Capitalize: first letter of each word in name is capitalized
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-file-name-case 'identity
"Specifies how to change case for obtaining file names.
When deriving a file name from a VHDL unit name, case can be changed as
follows:
As Is: case is not changed (taken as is)
Lower Case: whole name is changed to lower case
Upper Case: whole name is changed to upper case
Capitalize: first letter of each word in name is capitalized"
:type '(choice (const :tag "As Is" identity)
(const :tag "Lower Case" downcase)
(const :tag "Upper Case" upcase)
(const :tag "Capitalize" capitalize))
:group 'vhdl-naming
:group 'vhdl-compose)