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.
我正在寻找一个非交互式函数,它将采用名称,并在新窗口中显示其文档,尊重文档字符串中引用的“链接”。
我能找到的只有:
apropos
documentation
有没有可以两全其美的功能?如果不是,如何组合它(即从引用的单词生成链接'like this')?
帮助功能也可以非交互方式调用:
(describe-function 'forward-char)
这将在新窗口中显示文档(变量help-window-select控制显示的位置)。
help-window-select
如果您想要一个既适用于函数又适用于变量的函数,那么这是一种可能的方法:
(defun my-describe-stuff (symbol) (if (functionp symbol) (describe-function symbol) (if (boundp symbol) (describe-variable symbol))))