From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giovanni Ridolfi Subject: R: Problem with keys not being mapped Date: Wed, 14 Jan 2009 14:48:02 +0000 (GMT) Message-ID: <842028.12852.qm@web28313.mail.ukl.yahoo.com> References: <1231940786.27714.1294724509@webmail.messagingengine.com> Reply-To: giovanni.ridolfi@yahoo.it Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LN72N-0000qN-BP for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:48:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LN72L-0000pG-9C for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:48:06 -0500 Received: from [199.232.76.173] (port=48445 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LN72L-0000pA-5R for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:48:05 -0500 Received: from n5a.bullet.ukl.yahoo.com ([217.146.183.153]:33558) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1LN72K-00055V-ME for emacs-orgmode@gnu.org; Wed, 14 Jan 2009 09:48:04 -0500 In-Reply-To: <1231940786.27714.1294724509@webmail.messagingengine.com> 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: emacs-orgmode@gnu.org, Peter Westlake --- Mer 14/1/09, Peter Westlake ha scritto: > 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. >=20 > C-h m shows the right bindings. >=20 > Here's .emacs: >=20 > (add-to-list 'load-path > "/usr/local/share/emacs/site-lisp") > (add-to-list 'load-path > "~/src/org-mode/contrib/lisp") >=20 .... did you *activate* Org-Mode ? It is descibed in the Manual: 1.3 Activation see: http://orgmode.org/manual/index.html#Activation e.g. :=20 ;; The following lines are always needed. Choose your own keys. (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) cheers Giovanni=0A=0A=0A