This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-03-27
Channels
- # aleph (5)
- # announcements (18)
- # beginners (200)
- # cider (25)
- # cljdoc (4)
- # cljsrn (3)
- # clojure (90)
- # clojure-europe (3)
- # clojure-finland (5)
- # clojure-france (1)
- # clojure-houston (1)
- # clojure-italy (8)
- # clojure-nl (15)
- # clojure-spec (24)
- # clojure-uk (20)
- # clojurescript (199)
- # core-async (2)
- # cursive (45)
- # data-science (14)
- # datomic (33)
- # duct (13)
- # fulcro (4)
- # graphql (3)
- # kaocha (9)
- # leiningen (24)
- # nrepl (16)
- # off-topic (105)
- # pathom (15)
- # pedestal (28)
- # re-frame (1)
- # reagent (14)
- # shadow-cljs (28)
- # spacemacs (8)
- # tools-deps (8)
- # vim (4)
More related to emacs in general but is there a function to highlight function call? (ex (println "hello")
)
Currently the face is the same as arguments. For my usage, I think I'd like to colorize it or might be make it italic
The face of function names should become different when CIDER is running and you’ve enabled dynamic font-locking.
Without a running REPL it’s hard to tell wether something is a function name or something else, but once CIDER is running it uses different colours for macros, special forms, core functions and other functions.
For everyone else - you can try (setq cider-font-lock-dynamically t)
and see if you like it. (that turns on everything possible)
Hm it doesn't change anything, I guess I did something wrong. Edit: oh, it needed some kind of refreshing 😉
@bozhidar will try the fix asap, thanks for this!
Is there a way to get cider to stop inserting [clojure.set :as set]
in my file? I have a large number of om transactions with the unfortunate prefix of set/ and these keep breaking when clojure.set is required as set
i think there's a notion of common imports and you can hopefully prevent it from using that one
is there any way to do something like cider-pprint-eval-last-sexp-to-repl
but printing the result in the REPL instead of adding it as input in the REPL?