From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Problem with keys not being mapped Date: Wed, 14 Jan 2009 09:41:49 -0500 Message-ID: <87ljtevtjm.fsf@gollum.intra.norang.ca> References: <1231940786.27714.1294724509@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LN6wM-00062C-RO for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:41:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LN6wM-00061d-CB for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:41:54 -0500 Received: from [199.232.76.173] (port=54398 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LN6wM-00061Z-7G for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:41:54 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:51443) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LN6wM-00045K-44 for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:41:54 -0500 In-Reply-To: <1231940786.27714.1294724509@webmail.messagingengine.com> (Peter Westlake's message of "Wed\, 14 Jan 2009 13\:46\:26 +0000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Peter Westlake Cc: emacs-orgmode@gnu.org "Peter Westlake" writes: > I have just installed emacs-snapshot and the git version of org-mode on > a new Debian machine (running Lenny), and a lot of C-c bindings > are missing. For example, C-c a should be org-agenda, but is unbound. > > C-h m shows the right bindings. > > Here's .emacs: > > (add-to-list 'load-path "/usr/local/share/emacs/site-lisp") > (add-to-list 'load-path "~/src/org-mode/contrib/lisp") > > (custom-set-variables > ...etc... > > There is a file in org-agenda-files. > > Here's what happens on startup, from *Messages*: > > ("emacs") > Loading 00debian-vars...done > Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)... > Skipping dictionaries-common setup for emacs-snapshot > Loading /etc/emacs/site-start.d/50dictionaries-common.el > (source)...done > Loading /etc/emacs/site-start.d/50org-mode.el (source)...done > For information about GNU Emacs and the GNU system, type C-h C-a. > OVERVIEW > org-agenda is on > > It doesn't mention /usr/local/share at all. Is that another bug, or the > cause of this one? Hi Peter, I add the org-mode git sources and load them at the top of my .emacs with ,---- | (add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp")) | (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) | (require 'org-install) `---- I have the following keybindings defined in my .emacs since I want C-c a and C-c l to work everywhere. I use the agenda so much I've rebound it to F12 for convenience. ,---- | (define-key global-map "\C-cl" 'org-store-link) | (define-key global-map "\C-ca" 'org-agenda) | | (global-set-key (kbd "") 'org-agenda) `---- I'm using GNU Emacs 22.2.1 on lenny and org-mode from git. -Bernt