This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-09-17
Channels
- # 100-days-of-code (4)
- # announcements (4)
- # aws (2)
- # beginners (88)
- # cider (1)
- # cljsrn (9)
- # clojure (126)
- # clojure-conj (4)
- # clojure-dev (8)
- # clojure-greece (1)
- # clojure-italy (37)
- # clojure-nl (3)
- # clojure-spec (13)
- # clojure-uk (91)
- # clojurescript (392)
- # clojurewerkz (1)
- # clojutre (10)
- # core-async (6)
- # cursive (5)
- # data-science (1)
- # datomic (41)
- # emacs (21)
- # events (1)
- # figwheel-main (52)
- # fulcro (2)
- # hyperfiddle (4)
- # jobs (3)
- # jobs-discuss (9)
- # luminus (3)
- # lumo (9)
- # mount (1)
- # nyc (1)
- # off-topic (73)
- # other-languages (6)
- # pedestal (8)
- # portkey (2)
- # re-frame (9)
- # reagent (8)
- # rum (17)
- # shadow-cljs (38)
- # sql (19)
- # tools-deps (18)
- # yada (4)
It seems current versions of clj-refactor will eagerly load all files in your project when the process starts up... is there any way to turn this off?
if memory serves right it is off by default. you might have something in your config to turn it on
ah yes, you're right. When I do an operation and it needs to analyze the code I want it to just do it without asking, but it shouldn't load all code at startup.
you still can have this set to nil but then you need to set cljr-eagerly-build-asts-on-startup to nil
A question for the Spacemacs users here, recently we made Sayid opt-in in the Clojure layer, and @bozhidar suggested doing the same for clj-refactor. Does that seem like a good idea? ( š for making it opt-in, š for keeping the current always-on default)
This means you would have to do this to get clj-refactor back:
dotspacemacs-configuration-layers
'(...
(clojure :variables clojure-enable-clj-refactor t))
Yep, it's fairly active. I'm in it. And I don't feel strongly either way about making clj-refactor opt-in.
Can I do something equivalent to git show 705e35b0
but that will use Clojure syntax highlighting?
I was thinking of either:
⢠using Emacs as a pager (current attempt will complain: emacs: standard input is not a tty
)
⢠Searching a magit/etc solution (not experienced with magit myself)
another very similar command I'm targeting to replace would be git diff master
. With both, I want to code-review myself
Guess that if this ticket exists, then it's hard š https://github.com/magit/magit/issues/2942