on nil or 'nil once worried me · c/emacs · 1 pts · 2yThere are a variety of "self-quoting" constructs in elisp (including all :keywords!). (eq (quote nil) nil) ; ==> t (eq (quote t) t) ; ==> t (eq (quote :some-keyword) :some-keyword) ; ==> t
on Create "code blocks" that I can collapse and expand with mouse next to functions? · c/emacs · 1 pts · 2yOutline mode works well for this. I use my own small outli package to set this up automatically with nice formatting and “speed key” access at the beginning of headlines. Tab to fold.
There are a variety of "self-quoting" constructs in elisp (including all
:keywords!).Outline mode works well for this. I use my own small outli package to set this up automatically with nice formatting and “speed key” access at the beginning of headlines. Tab to fold.