Matus Goljer

Results 743 comments of Matus Goljer

I suspect `:Status` should be `:status` too.

I wonder how this would work. Instead of a command would we give some elisp to run? And it would drop us into the standard comint? Surely adding support for...

The PR #106 did a lot of work on this including tests and documentation. The basic logic is similar to yours but there's some additional settings etc. I say we...

Duplicate of #7 which now has a bit more generic description so I will keep that one open

I rebased this pull request and merged it, thanks for the contribution!

I quite don't like that we need to open all those files to have them in a "multibuffer"... I know it is currently the only solution. Seems like this package...

Oh, and of course @NicolasPetton :D

Anaphoras are funny thing, seems like we're roughly 50/50. Like @tarsius I like them quite a lot, especially when I prototype and I need to throw things together as fast...

We've done the assignment paperwork some time ago but I have to admit I forgot about it and merged a couple of patches that might not have been covered. Someone...

`if-let` has a pretty clever way to do this... it expands to ```elisp (let* ((a (and t 'a)) (b (and a nil)) (c (and b 'c)) (d (and c 'd)))...