Fork me on GitHub
#emacs
<
2016-12-17
>
luposlip11:12:25

Thanks for your input @surreal.analysis

luposlip11:12:41

Agree on your points.

luposlip11:12:58

Updated the cheatsheet accordingly 🙂

dpsutton16:12:31

does anyone know how to turn off edebug for all functions? I find that I build up a few debugged functions and then i have to remember which ones are and go reevaluate them manually

dpsutton16:12:38

is there a way to at least get a list?

dpsutton17:12:04

it looks like edebugging just puts that function into the function plist

dpsutton17:12:51

so i'm thinking (mapatom (lambda (x) (when (get x 'edebug-on-entry) blah)) but this seems to not work. And not work really quickly, almost like emacs knows the get never returns anything and immediately bails

dpsutton17:12:06

when i run a count function over it, it takes a minute and returns back like 63,000 or so

dpsutton17:12:12

so it would appear its not mapping at all

surreal.analysis19:12:53

cider-refresh should clear out all debugged functions, right?

dpsutton19:12:39

edebug is the emacs debugger for elisp

dpsutton19:12:51

i'm actually instrumenting CIDER functions in elisp