Ho packages
variabili che hanno un elenco di utenti github e nomi di pacchetti.
(defvar packages '('("auto-complete" . "auto-complete")
("defunkt" . "markdown-mode")))
Voglio git clone
se il file non esiste ancora.
(defun git-clone (author name)
(let* ((repo-url (concat "git@github.com:" author "/" name ".git")))
(print repo-url)
(unless (file-exists-p (concat "~/.emacs.d/git/" name))
(shell-command (concat "git clone " repo-url " ~/.emacs.d/git/" name)))))
E voglio applicare git-clone
a tutti i pacchetti variabili da packages
elencare. Ma non sono riuscito a capire come applicare con argomenti.
; This obviously doesn't work
(mapcar `git-clone `packages)
'
nella tuadefvar
dichiarazione.