@timofey.sitnikov In my environment, vim-iced opens test result buffer (not stdout buffer) with the following contents automatically.
;; foo.core-test/b-test: FIXME, I fail.
expected: (= 2 1)
actual: (not (= 2 1))
c.f. https://liquidz.github.io/vim-iced/vim-iced.html#%3AIcedTestBufferOpenquick vim-iced
question: I have a namespace that refers a function from another namespace. i want to move that function into this namespace. so i delete it from the other file, copy it into this file, remove the :refer
part of the ns
macro, and then use vim-iced to evaluate the function definition in the new file/namespace.
however, this throws the error CompilerException java.lang.IllegalStateException: private-card already refers to: #'game.core.card/private-card in namespace: game.core.diffs
i solved it by using the repl to run (ns-unmap *ns* 'private-card)
, and then reevaluate the function, but that feels messy