This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-05-26
Channels
- # aws (7)
- # beginners (109)
- # boot (5)
- # carry (2)
- # cider (25)
- # clara (6)
- # cljs-dev (86)
- # cljs-experience (19)
- # cljsrn (1)
- # clojure (183)
- # clojure-dev (7)
- # clojure-dusseldorf (7)
- # clojure-gamedev (2)
- # clojure-greece (32)
- # clojure-italy (2)
- # clojure-norway (1)
- # clojure-russia (228)
- # clojure-sg (3)
- # clojure-spec (38)
- # clojure-uk (104)
- # clojurebridge (1)
- # clojurescript (29)
- # community-development (9)
- # core-async (118)
- # core-matrix (20)
- # cursive (5)
- # datomic (140)
- # emacs (25)
- # figwheel (1)
- # hoplon (21)
- # jobs (4)
- # lein-figwheel (2)
- # luminus (10)
- # lumo (35)
- # off-topic (137)
- # om (31)
- # onyx (62)
- # pedestal (6)
- # reagent (25)
- # remote-jobs (1)
- # ring-swagger (11)
- # spacemacs (2)
- # test-check (17)
- # uncomplicate (10)
- # unrepl (1)
- # untangled (20)
- # vim (4)
- # yada (3)
@kiemdoder can you post a screenshow?
@kiemdoder when you have your cursor over text in emacs, you can run M-x describe-face
to see what face (i.e. named set of font attributes) is being applied, those names will generally be descriptive enough to understand why the mode is causing the symbol to be formatted in such a way
or at least it would give us something to help explain it to you 🙂
here's a function i've been playing with: create a let binding of the local vars when debugging:
but you need to be in the debugger, run this with whatever code you want for the body highlighted, and then quit the debugger
@dpsutton saving this as I have been trying to create something similar as well!
luckily @malabarba 's debugger already sends back the locals so we just have to look at them and format them
in my head there should be a function that defines a let with its results at the repl
I mean does the actual def
from each let
binding
ah ah yeah
I guess my use case is, you want to define the let so that you can debug the "body"
there could be a cleanup thing for undefining them
@dpsutton have you stumbled across a function to get a list of symbol+forms ... aka the bindings, from wherever I am in a let
(or other binding forms) ?
And I make it copy to the kill ring so you can easily make your own function and then step through that
awesome yep I was looking for exactly that