Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:51:03Z http://stackoverflow.com/feeds/question/221365 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p 1 Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Alexander Kojevnikov 2008-10-21T10:08:22Z 2009-10-04T08:56:37Z <p>If I have a folder structure set up like this:</p> <pre><code>~/Projects emacs package1 package1-helpers package2 package2-helpers package2-more-helpers package3 package3-helpers </code></pre> <p>How do I add these folders:</p> <ul> <li>~/Projects/emacs</li> <li>~/Projects/emacs/package1</li> <li>~/Projects/emacs/package2</li> <li>~/Projects/emacs/package3</li> </ul> <p>...to the <code>load-path</code> from my .emacs file?</p> <p>I basically need a short automated version of this code:</p> <pre><code>(add-to-list 'load-path "~/Projects/emacs") (add-to-list 'load-path "~/Projects/emacs/package1") (add-to-list 'load-path "~/Projects/emacs/package2") (add-to-list 'load-path "~/Projects/emacs/package3") </code></pre> http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/221449#221449 4 Answer by Jouni K. Seppänen for Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Jouni K. Seppänen 2008-10-21T10:53:45Z 2008-10-21T12:57:32Z <pre><code>(let ((base "~/Projects/emacs")) (add-to-list 'load-path base) (dolist (f (directory-files base)) (let ((name (concat base "/" f))) (when (and (file-directory-p name) (not (equal f "..")) (not (equal f "."))) (add-to-list 'load-path name))))) </code></pre> http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/222122#222122 2 Answer by jurta for Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path jurta 2008-10-21T14:37:42Z 2008-10-21T14:37:42Z <p>I suggest you to use <a href="http://www.panix.com/~tehom/my-code/how-to-use-subdirs-el.txt" rel="nofollow">subdirs.el</a></p> http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/702280#702280 3 Answer by Nicholas Riley for Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Nicholas Riley 2009-03-31T17:58:32Z 2009-03-31T17:58:32Z <p>Here's something I use in my .emacs:</p> <pre><code>(let* ((my-lisp-dir "~/.elisp/") (default-directory my-lisp-dir) (orig-load-path load-path)) (setq load-path (cons my-lisp-dir nil)) (normal-top-level-add-subdirs-to-load-path) (nconc load-path orig-load-path)) </code></pre> <p>If you look at the description for normal-top-level-add-subdirs-to-load-path, it's somewhat smart about picking which directories to exclude.</p> http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/1515968#1515968 1 Answer by Sujoy for Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Sujoy 2009-10-04T08:56:37Z 2009-10-04T08:56:37Z <p>This is my hacked up version :P</p> <pre><code>(defun add-to-list-with-subdirs (base exclude-list include-list) (dolist (f (directory-files base)) (let ((name (concat base "/" f))) (when (and (file-directory-p name) (not (member f exclude-list))) (add-to-list 'load-path name) (when (member f include-list) (add-to-list-with-subdirs name exclude-list include-list))))) (add-to-list 'load-path base)) </code></pre> <p>This will add all first level dirs from base and exclude the ones in exclude-list, while for the dirs in include-list, it will add all the first level dirs of that dir too.</p> <pre><code>(add-to-list-with-subdirs "~/.emacs.d" '("." ".." "backup") '("vendor" "my-lisp")) </code></pre>