You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running :wqa tries to save all buffers then close them all. This fails, surprisingly if you never opened the conjure log buffer, because it is open but invisible.
Reproduction steps:
nvim test.clj
:wqa
E948: Job still running
E676: No matching autocommands for buftype= buffer
:ls!
1 %a "test.clj" line 76
2u h "conjure-log-74563.cljc" line 0
3 #hR "term://~/projects/foo//74574:bb nrepl-server localhost:52386" line 1
:bwipeout! 3 - force kill the nrepl terminal
:wqa - now works
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! I can reproduce it and I think basically have a fix in place, just in the middle of prep before a long bit of travelling 😅 it might end up getting finished tonight, tomorrow, or on an 8 hour flight to India...
Should be a fairly quick fix though, just need to mark the terminal buffer appropriately so it's not attached to a file as we do with the log buffer.
Disabling the auto REPL for Clojure will also temporarily fix this, although you'll lose the auto bb REPL which might suck for your workflow.
Running
:wqa
tries to save all buffers then close them all. This fails, surprisingly if you never opened the conjure log buffer, because it is open but invisible.Reproduction steps:
nvim test.clj
:bwipeout! 3
- force kill the nrepl terminal:wqa
- now worksThe text was updated successfully, but these errors were encountered: