Russell Sim's Blog

common-lisp

Load ASDF Systems from the CWD

Keywords: #common-lisp

My workflow when it comes to development on lisp libraries, is to change into the project the launch a SLIME shell. This works great but how do I load systems from that project? Well I used to use a snippet like this. (push (truename (make-pathname :directory (sb-posix:getcwd))) asdf:*central-registry*) This is not what most people seem to be doing, instead they are using a local projects directory to host any local projects for example in roswell that directory is . Read more...
1 of 1