This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-04
Channels
- # announcements (4)
- # beginners (110)
- # boot (6)
- # calva (23)
- # cider (14)
- # cljdoc (5)
- # cljs-dev (50)
- # cljsrn (3)
- # clojure (105)
- # clojure-europe (3)
- # clojure-italy (46)
- # clojure-nl (6)
- # clojure-spec (19)
- # clojure-sweden (1)
- # clojure-uk (78)
- # clojurescript (66)
- # core-async (5)
- # cursive (19)
- # data-science (16)
- # datomic (3)
- # events (2)
- # fulcro (11)
- # hoplon (53)
- # jobs (4)
- # jobs-discuss (6)
- # keechma (51)
- # leiningen (3)
- # nrepl (25)
- # off-topic (95)
- # parinfer (8)
- # precept (1)
- # reitit (61)
- # remote-jobs (1)
- # rewrite-clj (75)
- # ring-swagger (2)
- # robots (3)
- # shadow-cljs (43)
- # tools-deps (28)
- # vim (2)
Would it be possible to get clojuredocs support in cljs files? I know there's no 100% parity between Clojure and Clojurescript, but it will be nice to have it for common functions.
@roklenarcic What that means is that you’re using an nREPL connection with a REPL designed to be used as a streaming one, i.e. reading from stdin. What that means in Cursive terms is that you’re probably choosing an nREPL REPL type instead of clojure.main. If you do want to use nREPL with CLJS (which works better with Cursive) then you need to set up piggieback and use that.
ok thanks cflemming
Since a while ago my REPL/Cursive "freezes" when I run "Switch REPL NS to current file" for +- 5s - when I type in the REPL input window, nothing happens, when I want to move the cursor using arrows in the source file, nothing happens... . Anybody else has experienced this? IntelliJ 2019.1.2, OSX. Could be due to a recent IntelliJ or Cursive update. Running manually (in-ns ..)
in the REPL is OK.
@holyjak Not having this issue here. IntelliJ 2019.1.3, Cursive v1.8.2-eap4-2019.1, Linux
Are there somewhere good color schemes for Clojure for IntelliJ. I kind of like Emacs Clojure mode color scheme and I'd like to configure the same color scheme for IntelliJ for Clojure - to have the same look and feel. Or where do I see the actual color mappings in Emacs Clojure mode (tried to find them in the eLisp source code but couldn't find them there)?
Is there some Cursive keymap command that would kill the S-expression around the cursor? E.g. if I have
(def my-keys (map keyword my-header))
in my editor and my cursor is inside the inner S-expression somewhere (e.g. after the "k" in "keyword"), then giving that shortcut key command would kill the whole S-expression (i.e. (map keyword my-header)
) leaving:
(def my-keys )
... and (map keyword my-header)
would be in clipboard.@kari.marttila I'm not sure if you can do it exactly like that, but you could "Move backward out of Sexp" then go for the kill
Ok. But there is no ready paredit command, I guess?
This is no big deal, I was just wondering if there is such a paredit command...
@holyjak I haven’t experienced that, or received any reports of anyone else getting that either.
@kari.marttila No, there’s no command that will do that in one go.
I have some huge items in my REPL history that cause IntelliJ to slow to a halt when bringing up the REPL history window. Is there a way to clear the REPL history?