File: snippet-reference.org

package info (click to toggle)
yasnippet 0.14.0%2Bgit20200603.5cbdbf0d-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,052 kB
  • sloc: lisp: 5,866; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#+SETUPFILE: org-setup.inc

#+TITLE: Reference

#+BEGIN_SRC emacs-lisp :exports results :results value raw
(yas--document-symbols 1 `("Interactive functions" . ,#'interactive-form)
                         `("Customization variables" . ,#'(lambda (sym)
                                                            (and (boundp sym)
                                                                 (get sym 'standard-value))))
                         `("Useful functions" . ,#'fboundp)
                         `("Useful variables" . ,#'boundp))
#+END_SRC