This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-01-09
Channels
- # announcements (1)
- # atlanta-clojurians (1)
- # beginners (198)
- # calva (4)
- # cider (16)
- # clara (8)
- # cljs-dev (14)
- # cljsrn (4)
- # clojure (204)
- # clojure-europe (3)
- # clojure-gamedev (2)
- # clojure-italy (8)
- # clojure-nl (17)
- # clojure-poland (3)
- # clojure-russia (20)
- # clojure-spec (32)
- # clojure-uk (45)
- # clojurescript (59)
- # community-development (1)
- # core-async (25)
- # cursive (20)
- # datomic (47)
- # emacs (7)
- # fulcro (8)
- # iot (1)
- # iotivity (2)
- # jobs (1)
- # jobs-discuss (8)
- # juxt (11)
- # luminus (5)
- # nrepl (4)
- # off-topic (136)
- # onyx (24)
- # other-lisps (1)
- # parinfer (74)
- # pedestal (1)
- # planck (3)
- # portkey (67)
- # random (1)
- # re-frame (28)
- # reagent (11)
- # reitit (9)
- # remote-jobs (3)
- # ring-swagger (2)
- # rum (3)
- # shadow-cljs (96)
- # slack-help (3)
- # spacemacs (6)
- # tools-deps (3)
- # unrepl (1)
- # vim (4)
I've had this issue for a little while now that when doing a cider-jack-in
the cursor will jump to a (seemingly) random line in the buffer. Anyone know where that's coming from? (I'm on spacemacs)
morning guys. Is it possible to set (in .dir-locals.el
presumably) the default parameters for cider-connect-cljs
? I'd like to set the host, the port, the REPL type and the build.
I don’t think we have have vars for the default host and port, but I guess we can add those. Feel free to open a ticket.
@plexus I haven’t noticed this problem. Might be some missing save-excursion or something like that.
Is there a command for outputting the last result of an evaluation into the buffer I'm editing?
@rovanion I don't know, but I go to the Messages buffer, yank it, and paste it. Org mode does this really nicely (supposing you want an Org document) - every time you eval a Clojure block it inserts (or updates) the result block below it.
What is the way to "teach" cider to resolve a function differently? For example I want cider to treat let-flow
(https://github.com/ztellman/manifold/blob/master/docs/deferred.md#let-flow) as the usual clojure let
so that when i run format buffer it respects the let
style of indented bindings in let-flow
?
@rahul080327 there is a variable called clojure-align-binding-forms
which is a list of symbols to treat like let
. You can modify it with M-x customize-variable
(or M-x customize-group
clojure
) or add to it with elisp.
Thanks for the answer @U060QM7AA, however i added it like this and still doesnt work when i run format buffer.
do i need to add the manifold namespace as well? I use it as (d/let-flow ...)
I am a new comer to emacs, pardon my ignorance