Page 1 of 1
ASDF: How do I choose which nicknames is displayed on REPL
Posted: Wed Apr 02, 2014 11:51 pm
by joeish80829
I defined my DEFPACKAGE like this
Code: Select all
(defpackage :test
(:nicknames #:test #:t)
I would like "test to be shown on the REPL but it keeeps defaulting to "t". I think it picks shortest one. I s there any way to change this. Thanks in advance for any help on this
Re: ASDF: How do I choose which nicknames is displayed on RE
Posted: Fri Apr 04, 2014 3:00 am
by marcoxa
This is not an ASDF issue. It is a package and implementation dependent issue.
It appears that some implementations prefer the shortest package nickname to use in the prompt. You just have to dig out the relevant configuration bit for your implementation(s). In any case YMMV.
Cheers
MA
Re: ASDF: How do I choose which nicknames is displayed on RE
Posted: Fri Apr 04, 2014 7:39 am
by joeish80829
Thanks for the info...I think I decided my short name looks better anyway, I really appreciate your reply
