Reputation: 11222
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
Upvotes: 3
Views: 2189
Reputation: 74460
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.
Upvotes: 3