Fork me on GitHub
#emacs
<
2017-07-01
>
benedek06:07:24

@jjttjj if you jack in you better remove cider related stuff from your profiles.clj

benedek06:07:52

you only need that if you cider connect instead of jack in

benedek06:07:29

see the related part of the cider documentation

plexus13:07:31

In case anyone here finds this useful: an Emacs Lisp library that makes association lists and hash tables feel like clojure maps

dotemacs16:07:34

plexus: loving the library name!

plexus16:07:25

yeah not a fan of emacs lisp naming conventions, but this is one way to make it bearable. And seems like this letter isn't taken yet 🙂

plexus16:07:12

@dotemacs if you have a moment I could use a bit of help with this https://github.com/plexus/a.el/issues/1

dotemacs16:07:47

Sure, a bit later tonight… And to be honest, I saw that some of stuff from the header was missing and figured that you’re still tweaking it …

plexus16:07:19

tweaking isn't exactly the word. I'm postponing looking up the docs and figuring out what the f* needs to be there again.

plexus16:07:33

this is probably my least favorite part of writing elisp

dotemacs16:07:03

I get you 🙂

plexus16:07:22

so I figured maybe I could convince someone with more experience dealing with this stuff to have a look at it 😉

dotemacs16:07:18

using emacs 24.3 as a dependency and then linting, spits this out: 35:25: error: You should depend on (emacs "25") if you need alist-get’.` So leaving your declaration of emacs 25

dotemacs16:07:32

will complete this a bit later… PR will come!

richiardiandrea17:07:26

Awesome, I have been meaning to ask you this!

dotemacs07:07:15

Sorry for the delay @U07FP7QJ0 PR is in…

plexus07:07:42

Thank you 😍

plexus13:07:54

(setq player (a-list :name "Arne" :stats (a-list :score 99)))
(a-update-in player  [:stats :score] '+ 1)
;;=> ((:name . "Arne") (:stats (:score . 100)))