vote up 3 vote down star

The question is similar to one.

However, it differs in putting all subdirectories achievable in the folder too.

Jouni's code which puts first level folders achievable

(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)))))

How can you put a directory and all its subdirectories to load-path in Emacs?

flag

1 Answer

vote up 6 vote down check

My answer in the other question does handle multiple levels of subdirectories.

The code for reference

(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))
link|flag
@Nicholas: Thank you for pointing that out! – Masi Apr 27 at 0:14
I am rather new in Lisp. What does let* mean in your code? – Masi Apr 27 at 0:17
1  
let* is shorthand for many nested lets, each of which binds a single variable; regular old let binds all the variables at once. So, with let instead of let*, I could not refer to my-lisp-dir in the binding for default-directory because it would not be available until the body of the let. – Nicholas Riley Apr 27 at 0:42
1  
To see what directories are excluded, run C-h f normal-top-level-add-subdirs-to-load-path. – Nicholas Riley Apr 27 at 0:43
1  
If you click on "startup.el" in the help window, you'll go to the function's definition (assuming it's written in elisp, not C.) – Nicholas Riley Apr 27 at 3:34
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.