This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-25
Channels
- # aleph (1)
- # beginners (72)
- # boot (3)
- # cider (28)
- # cljs-dev (193)
- # cljsrn (11)
- # clojure (73)
- # clojure-brasil (3)
- # clojure-gamedev (2)
- # clojure-russia (6)
- # clojure-spec (30)
- # clojure-uk (26)
- # clojured (1)
- # clojurescript (32)
- # code-reviews (9)
- # core-async (4)
- # datascript (5)
- # datomic (9)
- # dirac (38)
- # fulcro (23)
- # garden (11)
- # leiningen (1)
- # luminus (11)
- # lumo (6)
- # off-topic (17)
- # quil (2)
- # re-frame (2)
- # reagent (3)
- # ring (3)
- # shadow-cljs (12)
- # spacemacs (4)
- # sql (2)
- # unrepl (85)
- # vim (3)
1. I run cider-eval 2. I get an exception. 3. To get on the corresponding lines, I have to click on the file-name/file-number in the cider window. Now, is there a way to move up/down the stack frames (jumping to the right file/line) via cider functions?
Is this github bot thing a new edition? Where can I read about the motivation / rationale behind it? (I'm finding it little annoying.)
i brought it up to see if it would encourage new contributors. so far it seems to be encouraging people to leave the channel. probably should turn it off or look for ways to curtail how many notifications are sent
@gganley Ops. Seems we didn’t pay enough attention to this. We’ll have to change one of the two keybindings for sure.
> Is there any reason cider-repl-mode
derives from fundamental-mode
and not prog-mode
?
That’s typical for special modes that are not intended for editing code directly. Almost all of those derive from fundamental-mode
or special-mode
.
@bozhidar i imagine with the deps.edn stuff becoming more popular we are going to need to be able to interact with edn a bit better. can you remind me of your hesitation to rely on edn.el? was it the peg dependency?
> I’ve disabled the comment notifications. Let’s see how things are going to be now. I'm gonna have to start reading my emails again, 😛
@bozhidar @dpsutton unfortunately they use their own custom coding standard setup in cursive, some clojure plugin in intellij
probably impossible to replicate sanely in emacs - so currently my workflow is edit shit, go to intellij, reformat the file, save .. sucks
maybe there’s a way to somehow add a post-save hook to have intellij reformat / save the file ugh
if it were up to me we’d just pass the code through a linter / autoformatter
but i can’t make that decision here unfortunately
I would be in favor of integrating custom error parsing and display in emacs so that the same function could be used in inf-clojure
as well. Edn can be read and transformed emacs side...this is going to be the norm with prepl I guess.
@dpsutton the problem is that cursive does context-aware indentation
so they will indent specially based on certain kinds of macros etc
Problem is that the two context are different and they end up being indented differently :)))
True story! 😅
yeah it’s frustrating
i wish in general that all indentation was based on an autoformatter like golang does