Fork me on GitHub
#emacs
<
2018-06-06
>
theeternalpulse13:06:42

Is there a pretty navigable emacs lisp reference out there, the official one is just so unsearchable outside of using a search engine. I'm looking for something on the level of clojuredocs/conj.io

minimal13:06:24

This guide is pretty good and has a bunch of reference links at the bottom https://github.com/chrisdone/elisp-guide

soulflyer15:06:38

Just noticed that something is kindly filling in missing :require entries for me in my clojurescript project. Not sure if its one's I have already specified in other files or maybe some standard :as abbreviations. I typed rf/<something> and [re-frame.core :as rf] magically appeared in my ns. I'm not complaining, just curious what does this....

theeternalpulse15:06:37

I never used it and it doesn't do anyhing without me manually hitting commands, so I'm not sure if maybe some hooks are set up in your config (if it is a custom emacs distro that is)

soulflyer15:06:55

could be. My setup is based on emacs-live which came with quite an extensive clojure setup...

eggsyntax15:06:28

Oh, right, and refactor-nrepl is just a layer over clj-refactor I guess.

soulflyer16:06:11

ah-ha, yes. cljr-magic-requires, part of clj-refactor. Looks like that is what is creating the namespace in the first place as well.