Fork me on GitHub
#reveal
<
2020-12-09
>
vlaaad19:12:13

Hey there! I released 1.1.171 with the number one requested feature: clearing the output panel, that is bound to Ctrl + L shortcut (uses Ctrl on mac too). There are some other UI changes as well, but they are still a bit WIP, I'll make a proper announcement when they are baked just right.

✔️ 12
vlaaad19:12:03

And if you are curious about UI changes, you can use Ctrl+Enter instead of Enter in action popup to open result in a new result panel, which means you can now see multiple results at the same time.

phronmophobic19:12:43

i'm trying to hook up reveal to emacs cider. I see https://vlaaad.github.io/reveal/#nrepl-based-editors , but it's not picking up the .nrepl.edn file in project for whatever reason. Is there another recommended setup for emacs cider?

vlaaad19:12:27

Do you use leiningen? I think I saw other ways to specify reveal middleware as a custom profile

phronmophobic19:12:53

well, I'm also trying clojure cli for the first time

phronmophobic19:12:00

mostly just wondering if someone else had specifically tried emacs cider and it worked for them. otherwise, I'll figure something out

vlaaad19:12:52

I don't have much experience with emacs/cider combo, sorry

phronmophobic19:12:55

np! excited to try reveal 🙂

parrot 3
practicalli-johnny21:12:28

@U7RJTCH6J I have an alias for using Clojure CLI, Cider and reveal

clojure-spin 3
phronmophobic21:12:43

i'm not familiar with .dir-locals.el

practicalli-johnny21:12:17

.dir-locals.el is a per project configuration for Emacs

phronmophobic21:12:42

does it get picked up if I only open files in a subdirectory (eg. ./src/...)?

practicalli-johnny21:12:34

Yes. Although you can run the command revert-buffer on a project buffer to load it into emacs

practicalli-johnny21:12:22

Once it's loaded, it stays there though

phronmophobic19:12:22

I was able to get it to work by manually editing the cider jack in command, but I'm hoping to have a per project setup

dakra19:12:43

There is an open issue about it that cider ignores .nrepl.edn because cider passes itself command line options to nrepl https://github.com/clojure-emacs/cider/issues/2927

👍 6
phronmophobic20:12:41

ok, I was able to get a solution that worked well enough for my use case. sharing in case it helps others or someone has an improvement. added the following to my .emacs

(defun reveal-reveal ()
  (interactive)
  (require 'cider)
  (add-to-list 'cider-jack-in-nrepl-middlewares "vlaaad.reveal.nrepl/middleware")
  (cider-add-to-alist 'cider-jack-in-lein-plugins
                      "vlaaad/reveal" "RELEASE"))
M-x reveal-reveal to have cider-jack-in add reveal dependencies and middleware