I know this may sound silly but what does defvar
do in the code below? Does it define a variable that hold a capture template? or we say that the template is bound to the variable capture-template-contact
?
I tried C-h f defvar
for help but still don't get it being a non-native speaker of English.
(defvar my/capture-template-contact
(concat "* %^{Name}\n"
":PROPERTIES:\n"
":Created: %U\n"
":Birthday: yyyy-mm-dd\n"
":Email:\n"
":Mobile:\n"
":Skype:\n"
":Address:\n"
":City:\n"
":State:\n"
":Country:\n"
":PostalCode:\n"
":Website:\n"
":Note:\n"
":END:\n") "Contact")