开发者

Can't activate 'remember' in org-mode

I can't get 'remember' to work in org-mode of emacs.

I'm on snow leopard.

I added

(global-set-key (kbd "C-M-r") 'org-remember) to my .emacs file but when I try to use that shortcut it says: Wrong type argument: commandp, remember

So I added (org-remember-insinuate)

and when I start emacs it says: symbol's function definition is void org-remember-insinuate

Ideas?

开发者_如何学运维GNU Emacs 22.1.1


Checking the obvious stuff...

Have you ensured that org-remember was loaded? i.e. by adding this to your .emacs:

(require 'org-remember)

And, while you're at it, have you ensured that remember can load properly also?

(require 'remember)

remember is a separate package from org, which you'll have to download. Check out the wiki page.

You'll want to ensure that the org and remember packages are in your load path before you require the libraries, with something like:

(add-to-list 'load-path "/path/to/orgdir/lisp")
(add-to-list 'load-path "/path/to/remember")
(require 'remember)
(require 'org-remember)

Note: Emacs 22 comes with org-mode, but not a recent version. You need the more recent version in order to get the org-remember package.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜