Dernière modification
Résumé : Update
Modifié(e) :
< }}}
à
> }}} -- AndyStewart
Modifié(e) :
< Thanks. This function will be useful.
< --StanislavIvankin
à
> Thanks. This function will be useful. Made some changes to dot files loading process. Just interested, is there any library that is trying to load dot files in init.d style ?
> -- StanislavIvankin
I am emacs user. It’s my favourite tool almost for everything. 
Well, nothing to add right now. Maybe someone will be interested in my init files.
I saw your dot emacs, I think function ‘add-subdirs-to-load-path’ is you want, it can recursive add directories to ‘load-path’. Below the define of ‘add-subdirs-to-load-path’:
(defun add-subdirs-to-load-path (dir)
"Recursive add directories to `load-path'."
(let ((default-directory (file-name-as-directory dir)))
(add-to-list 'load-path dir)
(normal-top-level-add-subdirs-to-load-path)))
Thanks. This function will be useful. Made some changes to dot files loading process. Just interested, is there any library that is trying to load dot files in init.d style ? – StanislavIvankin