Is it possibile to target both clojure-mode & clojurescript mode in one entry of .dir-locals?
In one .dir-locals.el file, not sure what you mean by one entry...
This might help... https://practicalli.github.io/spacemacs/clojure-projects/project-configuration.html
There are lots of variables that can be included https://practicalli.github.io/spacemacs/reference/cider/configuration-variables.html
I am not sure what all of them do yet, but #cider people should be able to help
@jr0cket I would like to propagate variables set in clojure-mode to clojurescript-mode
I'm running some clj code blocks from org mode, but the output doesn't contain any newlines:
#+begin_src clojure
4544 ;; number
\a ;; character
"a" ;; string
#+end_src
#+RESULTS:
: 4544\a"a"
Is there a way to add newlines after eacht line of output? What I'd like to see in the results is:
#+begin_src clojure
4544 ;; number
\a ;; character
"a" ;; string
#+end_src
#+RESULTS:
: 4544
: \a
: "a"
How to do that?
I've tried different :output
values.Actually I think that specifying options for clojure-mode propagates to clojurescript as well 😄
@kurt.sys my first thought would be to wrap them in println but I suspect that's not quite what you want to achieve.
@jr0cket yeah... that's not really what I want to achieve. I'll manage without, but it would be nicer with the newlines. Thanks anyway!