I wrote a quick function for searching lispy that I thought might be useful:<br><br>(defun search-map (term)<br>    (let ((module-names (loop for module in (list-map)<br>                                                 (collecting (string (name module)))))<br>
      (loop for module in module-names<br>          if (search (string-upcase term) module)<br>          collecting module)))<br><br>Thanks for lispy. Quite handy, look forward to more libraries in the official/experimental maps. :)<br>