nobody-famous

Results 88 comments of nobody-famous

That changed at some point. There's now a start call in alive/server to start it. If you load the test system from ASDF, it should find everything. (asdf:load-system :alive-lsp/test) (alive/test/suite:run-all)

Not entirely intended. The problem is that in-package only sets *package* for the current thread, which exits after the command is done. Swank (I think it's actually on the Slime...

I need to add this to the readme. Apparently the version of ASDF that comes with the debian sbcl is 3.3.1 and it needs 3.3.2 or 3.3.3. sudo apt-get install...

Yeah, I never quite finished that. I got to where the nested if syntax was the next thing to do and decided to work on other features instead. PRs are...

I don't think "wrong" is the right word. There isn't really one way to do it. I've seen it indented relative to the opening `cond` instead of the test clause,...

I still plan on adding the options, but I looked into what parinfer is doing and its approach is fundamentally flawed. Whitespace isn't significant in lisp, so using it to...

I don't use neovim, but you should be able to set it up like other LSPs. Things like REPL integration, send code for eval, etc are non-standard messages, so you'll...

What is this fixing? Theoretically, it shouldn't be possible for that function to return nil. If it is, then something else is wrong.

For now, if ignoring it works then do that. The "path (3 3 2 3)" thing is the annoying way that sbcl specifies where things are in the code. It...

I do plan on adding this. It got put on the back burner because the SBCL calls are a little weird. I'll need to dig through the swank source and...