Add all entities.

This commit is contained in:
Tom Alexander
2023-08-29 15:10:27 -04:00
parent 3e6df7ba78
commit 3206027b96
5 changed files with 441 additions and 16 deletions

1
elisp_snippets/README.md Normal file
View File

@@ -0,0 +1 @@
This folder is for snippets of elisp that are useful for development.

View File

@@ -0,0 +1,5 @@
(dolist (var org-entities)
(when (listp var)
(message "\"%s\"," (nth 0 var))
)
)