-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
I often invoke c-mera similarly to the following example:
cm c -E '(load "file")' -E '(in-package :my-pack)' ...
to avoid boilerplate.
I guess this is a very common use-case, but might feel hackish to users as the form provided in the string is directly passed to eval.
Maybe it would be better to capture this with additional command-line options, such as
cm c -L "file" -P my-pack ...
Before I go ahead, @lispbub: what do you think, worth doing or not?