我正在尝试为spacemacs安装org-checklist
,但是遇到了一些困难。在项目文档(https://orgmode.org/worg/org-contrib/org-checklist.html)上,说启用org contrib
目录,但是当我运行M-x find-library RET org-contribdir
时,说contrib目录已弃用。当我尝试使用org-plus-contrib
安装package-list-packages
时,什么都没有发生。
How to untick checkboxes in org-mode for the next cyclic/repetitive task-这个堆栈溢出问题说我应该下载org-checklist.el
文件,但是在任何地方都找不到。如果有人知道如何设置org-checklist
或可行的替代方法,我将非常感谢
答案 0 :(得分:0)
org-checklist.el
是org-plus-contrib
的一部分。您应该能够使用package-manager
进行安装:可以从orgmode.org下载它,因此必须将(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
添加到档案列表中。
从emacs -q
开始,我可以在评估以下几行后安装它:
(require 'package)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
*scratch*
缓冲区中的。调用package-list-packages
显示org-plus-conrib
为可用软件包,ix
已安装(在我确认要安装后)。
然后我就可以用org-checklist
加载M-x load-library RET org-checklist RET
。
或者,您可以仅从here下载文件并将其保存在emacs的load-path
中的某个位置,然后说(require 'org-checklist)
。
希望这会有所帮助。