This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-18
Channels
- # announcements (1)
- # aws (13)
- # beginners (55)
- # calva (8)
- # cider (73)
- # cljs-dev (96)
- # clojure (119)
- # clojure-europe (4)
- # clojure-italy (41)
- # clojure-nl (14)
- # clojure-uk (6)
- # clojurescript (90)
- # cursive (14)
- # data-science (1)
- # datomic (20)
- # dirac (1)
- # emacs (32)
- # figwheel-main (11)
- # fulcro (81)
- # hoplon (2)
- # jobs (1)
- # lein-figwheel (2)
- # luminus (1)
- # lumo (19)
- # nyc (3)
- # off-topic (60)
- # other-languages (1)
- # pedestal (5)
- # quil (1)
- # re-frame (3)
- # reagent (3)
- # reitit (5)
- # remote-jobs (1)
- # ring-swagger (2)
- # shadow-cljs (43)
- # sql (15)
- # tools-deps (20)
- # vim (21)
- # yada (6)
I've noticed that when running emacs with the option -nw
certain keybinds dont work. Is there something I can do to fix this that doesn't involve explicitly re-binding all combinations I find that don't work?
i think i normally check by running C-h c
which finds out which binding is at which key. and it says the key input you've entered. So in your case it might say that nothing is bound to C-)
I actually just set this up this bind:
(global-set-key (kbd "C-)") 'paredit-forward-slurp-sexp)
wait, is there a thing as shift parens? on my keyboard it requires shift to get the paren
Also, interestingly enoguh, using C-h c
.
If I simply do M-n
it shows up as M-n
. But if I do C-n M-n
it's read as C-n ESC n
oh yeah. terminals are funky. are you on mac? if so there are ways to customize iterm to not be wonky
Hello - recent convert from vim to (spac)emacs here. I’ve been enjoying the features for running tests and getting a summary straight into a buffer - I’m wondering if there are any suggestions for how to include debugging information in that summary? Usually when I am digging into a failing test it’s useful to get the log output for the test to get some more visibility. I suppose I could put in a failing assertion with the data I’m interested in, are there any better options?
If I crash out yes, but when I’m not fixing a crash, I’ll use things like timbre.spy
to look at values (either in the test, or in code I’m debugging). When I used to run tests directly in the repl I’d see those flow past while the test was running, but in this case the test summary doesn’t capture that
right now i’m using (is (= false symbol-im-interested-in))
so I get the info dumped out in my test summary as a failed assertion