This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-04-29
Channels
- # admin-announcements (1)
- # aws (10)
- # beginners (76)
- # boot (53)
- # braid-chat (1)
- # cider (80)
- # cljs-edn (3)
- # clojure (65)
- # clojure-belgium (2)
- # clojure-gamedev (2)
- # clojure-nl (3)
- # clojure-poland (1)
- # clojure-russia (39)
- # clojure-uk (14)
- # clojurescript (91)
- # cursive (62)
- # datascript (1)
- # datomic (9)
- # dirac (34)
- # emacs (25)
- # error-message-catalog (8)
- # events (1)
- # hoplon (88)
- # instaparse (1)
- # jobs (2)
- # jobs-discuss (6)
- # lein-figwheel (7)
- # luminus (43)
- # mount (5)
- # off-topic (7)
- # om (28)
- # onyx (61)
- # planck (4)
- # re-frame (27)
- # reagent (3)
- # remote-jobs (2)
- # spacemacs (3)
- # untangled (136)
set-default-font
is deprecated, it's now an alias for set-frame-font
, but that means that when you create a new frame (`C-x 5 2`) it doesn't use the right font
what i've done in the past is use customize-group for emacs, set the default face, and then go look at the customize.el file it creates to see what it likes to do
I've got it working with strings, where i pass in the entire sexp with a |
as where I want my point, and then in a temp buffer, find this and delete it and then carry out my function
I want to insert the unevaluated form into the temp buffer since it contains invalid code and re-search for |
, but insert is a function so it is evaluating the code
I wish i could invoke the reader without the evaluator and have it give me its string representation
@plexus: I always use customize-face
and choose default
, from which most other faces inherit
@dpsutton: the macro will receive the unevaluated sexp which you can turn into a string. Can't remember the function now (and I'm on my phone) but the equivalent of Clojure's pr-str