Achylles has quit [Remote host closed the connection]
makomo has joined #slime
cage_ has quit [Remote host closed the connection]
vms14 has quit [Quit: WeeChat 2.3]
<jackdaniel>
no, we're all dead for centuries ;)
vms14 has joined #slime
<edgar-rft>
vms14: slime hasn't many bugs, so this channel is rather slow
<vms14>
I have a problem with slime edgar-rft
<vms14>
1sec
<vms14>
there is something going wrong
<vms14>
when I start the pc I like to type emacs --daemon and from emacsclient -t use slime
<vms14>
but slime just hangs with the inferior repl and does not give me the slime-repl
<vms14>
If I put M-x slime-repl it will give me the repl, but there is an error saying pipelined request
<vms14>
seems the problem is with swank
<vms14>
it says ;pipelined request... (swank:connection-info)
<vms14>
I kill emacs from top, type M-x slime-reset, M-x slime-restart-inferior-lisp
<vms14>
sometimes works, sometimes not
<vms14>
what it seems to fix the bug is calling slime again and typing yes, so it creates another inferior lisp
<vms14>
then kill emacs
<vms14>
and try again
<vms14>
(setq inferior-lisp-program "sbcl" ; Steel Bank Common Lisp
<vms14>
slime-contribs '(slime-fancy))
<vms14>
this is what I have in .emacs.el
<vms14>
it worked fine the first days
<vms14>
searching about this problem I have found that it seems emacs is waiting for an answer
<vms14>
also tried to add (require 'slime-autoloads) (package-initialize)
<vms14>
emacs version is 26 and the OS is Netbsd 8.0 amd64
<vms14>
a lisper gave me a trick which is starting a lisp image quickload swank, and then use slime to connect to that image. It seems it will work and solve my problem, but I'd like to know what's wrong
<edgar-rft>
But I have no idea if that will solve *your* problem :-(
<vms14>
don't worry, just wanted to know why
<vms14>
If I can't solve it I'll try with the lisper solution
<vms14>
but thanks for the link, and for trying to help <3
<edgar-rft>
Just stay logged in here. I'm sure there will people show up who might help you better than me.
scymtym has quit [Ping timeout: 276 seconds]
anamorphic has joined #slime
anamorphic has quit [Client Quit]
gabbiel has joined #slime
<gabbiel>
I have a question, and I know that most likely no one is here.
<gabbiel>
but here it is:
<gabbiel>
how do I make slime be opened in the background after I enter a .lisp buffer?
<gabbiel>
adding a hook to lisp-mode also makes the slime buffer open in a new window
<gabbiel>
geiser, the scheme equivalent to slime, opens a new window, but immediately closes it
<gabbiel>
I'm ok with that too
<gabbiel>
but it opening in the background would be better
<gabbiel>
also, I only want slime to open in the background if slime isn't open already
<gabbiel>
if there is a slime buffer, basically do nothing
<gabbiel>
stylewarning has quit [*.net *.split]
<Shinmera>
non-solution: just launch slime at emacs launch
<gabbiel>
I think I almost have a solution
stylewarning has joined #slime
<gabbiel>
nevermind, i cant get it work
<edgar-rft>
From my slime-init.el - Slime is already loaded when (fboundp 'slime-connected-p) is true, and it's connected to a CL process when (slime-connected-p) is true.
<gabbiel>
what does that mena
<gabbiel>
*mean
<edgar-rft>
when (and (fboundp 'slime-connected-p) (slime-connected-p)) ist true then slime is aleady running in the background
<gabbiel>
sorry I'm brainded, I've been trying to get this to work for 2 hours now
<gabbiel>
how can the info u gave me help
<edgar-rft>
gimme some minutes, just testing the code...
<gabbiel>
what's even the difference between slime-mode-hook and slime-connected-hook
<edgar-rft>
slime-connected-hook runs after the connection to the external CL program has been established
<gabbiel>
ok, then thats the hook I have to care about
<gabbiel>
OMG I GOT IT TO WORK
<edgar-rft>
obviously you were faster than me :-)
<gabbiel>
its not a perfect solution but whatever
<edgar-rft>
Emacs Lisp is for whacky hacking, Common Lisp is for real pograms :-)
<gabbiel>
lol
<gabbiel>
I feel like further tackling the problem in order to have the ideal solution