todo emacs lisp symbol generation, generate doc popup
emacs lisp symbol generation
- emacs tutorial, completely redo, generate, emacs lisp function doc tooltip popup, and for xah emacs lisp mode keyword Syntax Coloring.
- example of uncolored functions
dired-get-marked-files
dired-mode
set-buffer-file-coding-system
- Elisp: Generic Map Functions (for hash table, alist, plist)
- readme.txt
;; determine if a elisp function is written in C vs not. (defvar xah-elisp-symbols-c nil "Lisp function written in C") (defvar xah-elisp-symbols-not-c nil "Lisp function defined in lisp") (mapcar (lambda (x) (if (subrp (symbol-function (intern-soft x))) (progn (push x xah-elisp-symbols-c)) (progn (push x xah-elisp-symbols-not-c)))) xah-elisp-all-symbols) (length xah-elisp-all-symbols) 27324 (length xah-elisp-symbols-c) 9319 (length xah-elisp-symbols-not-c) 18005