Reputation: 2674
I have a customizable variable, containing a list of directories. I would like to be able to customize it using some INS and DEL buttons in Emacs custom mode, and if possible even use a file picker for customizations. So what I have so far now is:
(defcustom my-system-include-paths '( "./include/" "/opt/local/include" "/usr/include" )
"This is a list of include paths."
:group 'mygroup
)
I imagine that I have to use the :type
parameter, but I don't know how to use it.
Upvotes: 1
Views: 504