mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00

and all the other headings one level up. Except for snippet-reference.org; yas--document-symbols doesn't quite work right in that case, fix it later.
16 lines
563 B
Org Mode
16 lines
563 B
Org Mode
#+STARTUP: showall
|
|
|
|
#+TITLE: Reference
|
|
|
|
* Reference
|
|
|
|
#+BEGIN_SRC emacs-lisp :exports results :results value raw
|
|
(yas--document-symbols 2 `("Interactive functions" . ,#'interactive-form)
|
|
`("Customization variables" . ,#'(lambda (sym)
|
|
(and (boundp sym)
|
|
(get sym 'standard-value))))
|
|
`("Useful functions" . ,#'fboundp)
|
|
`("Useful variables" . ,#'boundp))
|
|
#+END_SRC
|
|
|