quickproject icon indicating copy to clipboard operation
quickproject copied to clipboard

Template functionality: replace system and application anywhere

Open equwal opened this issue 6 years ago • 0 comments

Any .*system.*.asd or .*.application.*.lisp file will be replaced with the name. So application-tests.lisp becomes projectname-tests.lisp. Does not change the default template functionality at all.

Tests:

(template-pathname->output-name "application-tests.lisp" "asdf")
 ;; => #P"asdf-tests.lisp"

(template-pathname->output-name "system-tests.asd" "asdf")
 ;; => #P"asdf-tests.asd"

Resolves #21

equwal avatar Jan 07 '20 21:01 equwal