vim-fireplace icon indicating copy to clipboard operation
vim-fireplace copied to clipboard

fireplace.vim: Clojure REPL support

Results 34 vim-fireplace issues
Sort by recently updated
recently updated
newest added

I can't get fireplace to work with the babashka nrepl. ``` > bb nrepl Started nREPL server at 127.0.0.1:32851 For more info visit: https://book.babashka.org/#_nrepl ``` Fireplace seems to connect OK....

nREPL has had support for running servers through AF_UNIX-style domain sockets for a while: https://github.com/nrepl/nrepl/pull/270 . It'd be nice if we could connect to those servers with vim-fireplace. I've messed...

Resolves #417. A draft for adding support for connecting to AF_UNIX domain socket nREPL servers (the type that nREPL starts when you provide the `--socket PATH` option). If the user...

Pressing `cqp`, I can tab-complete builtins and things but if I want to complete `my-func` I need to type `current-namespace/my...` first. Is this expected? Would it be good if `my-func`...

Currently it's hardcoded to puget, it would be nice to customise it (e.g. for zprint)

https://clojure.github.io/test.check/0.9.0/clojure.test.check.clojure-test.html many of these dynamic vars would be handy. As would resolving https://github.com/nubank/matcher-combinators/issues/195 be useful, too.

Hi and thanks for making vim-fireplace! I stumbled upon a curious problem - when I run `:RunTests`, fireplace doesn't actually run anything, it fast forwards to reporting success: ``` Success:...

More of a request/idea than an issue. I find I mark forms and then jump to those marks to eval them, and then jump back to where I was before....

Using either the latest nvim, nvim-qt or vim 9 on Windows 11, If I run (println "Hello") by typing cpp in the form, fireplace displays nil, but not "Hello". The...

I have this in a function in my clj file ``` (def access-token (env :api-access-token)) ``` When I try to use fireplace to run a function that calls that line,...