conjure

:neovim:+:clj: https://github.com/Olical/conjure - If you're enjoying Conjure and want to say thanks: https://github.com/users/Olical/sponsorship :smile: (alt https://conjure.fun/discord)
emilaasa 2021-06-22T06:29:20.167600Z

... wtf 😄

Chase 2021-06-22T20:17:32.170700Z

I think when I open a clojure or edn file without having a repl started, conjure is quickly popping up a hud saying no nrepl found and starts a bb repl and then the hud quickly closes. The issue is it then drops me into insert mode which is tripping me up big time. Any clue what is happening here?

Chase 2021-06-22T20:18:57.170800Z

It only seems to happen the first time so I think it has something to do with that whole starting the bb repl with corresponding message process

dave 2021-06-22T20:45:43.171100Z

I've had the same exact problem, which was related to a custom autocmd that I had set up that automatically puts me into insert mode when entering a terminal buffer. I fixed it by adding another autocmd that puts me in normal mode when entering a Clojure buffer :) This may or may not be useful, your issue might turn out to be something else. But maybe it's a similar issue.

nate 2021-06-22T21:30:35.172500Z

Does the newer (non-JVM) Conjure support sending tap> data to the log buffer? I seem to remember that used to be a thing.

Olical 2021-06-24T08:53:11.176200Z

It does not, sadly 😭 I have an issue you can watch now though https://github.com/Olical/conjure/issues/220 might be able to look at it kinda soon.

Olical 2021-06-24T08:53:46.176500Z

I'm away from home visiting my parents next week so I might get some hours where I have nothing else to do other than a bit of OSS, might have the energy for it then 🙂

Olical 2021-06-24T08:54:03.176700Z

I really need to get back to the time where I worked Mon-Thurs and spent my Fridays working on my own things 😅

nate 2021-06-24T15:45:30.181900Z

Thanks for the issue to watch

nate 2021-06-24T15:45:52.182100Z

I have some free time coming up next month, maybe I can help out with tap support (or something else)

Chase 2021-06-22T21:51:48.172600Z

Do you mind sharing it? I coincidentally had your vim config bookmarked but I am not finding it and my attempts aren't working

dave 2021-06-22T22:52:45.172800Z

I'm honored! 😁 Here is the commit where I added it: https://github.com/daveyarwood/dotfiles/commit/6c89be3f6dc757cb123f6e5e95f1b27e8fce6166

Chase 2021-06-22T22:58:56.173Z

How wild, I literally had just tried that Filetype...stopinsert method and it wasn't working.

Chase 2021-06-22T22:59:01.173200Z

Anyways, that works. Thanks man