Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 library-of-babel 来整合常见的 org-babel 块,并使它们可以从 org-mode 的其他地方调用。
org-babel-ingest源代码块从几个不同的文件输入到 babel 库(通过)。
org-babel-ingest
有没有办法获取可用库条目的列表?
这将有助于了解:
如何查看和编辑 library-of-babel 的内容?
该变量org-babel-library-of-babel包含所有功能。
org-babel-library-of-babel
如果您只想要函数的名称,请获取每个条目的第一个元素:
(mapcar 'car org-babel-library-of-babel)