sjlevine / atom-slime

Write lisp code efficiently with Atom
MIT License
68 stars 13 forks source link

Lispworks doesn't support '--load' command line arg #40

Closed adamweaver closed 7 years ago

adamweaver commented 8 years ago

Although LW doesn’t have a canonical console application name, LW documentation suggests lw-console

haz commented 8 years ago

So it still needs the swank-script passed in as an argument, but just doesn't work with the --load?

daewok commented 8 years ago

Another way to deal with this is to not pass arguments to the Lisp on the command line at all, but instead send the necessary init forms to the Lisp's stdin. SLIME's standard init forms (slime-init-command) use only code defined in the spec so should work regardless of which Lisp is used.

adamweaver commented 8 years ago

@haz, LW (annoyingly) uses '-load' (single dash) instead

sjlevine commented 7 years ago

Thanks for this contribution, Adam! This has been merged in. I've finally gotten around to checking out some of your pull requests (apologies for the delay). I'm cherry picking so as to not merge them all at once.