From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Assigning a keyboard shortcut Date: Tue, 10 May 2011 11:06:27 -0400 Message-ID: <87mxiutx1o.fsf@fastmail.fm> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJoW7-0001xs-7H for emacs-orgmode@gnu.org; Tue, 10 May 2011 11:06:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJoW6-0003Hu-5E for emacs-orgmode@gnu.org; Tue, 10 May 2011 11:06:31 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:44795) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJoW6-0003Hq-32 for emacs-orgmode@gnu.org; Tue, 10 May 2011 11:06:30 -0400 In-Reply-To: (John Hendy's message of "Tue, 10 May 2011 09:59:21 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: John Hendy Cc: emacs-orgmode John Hendy writes: > This is surely very simple but I can't find it anywhere... > > I'm trying to assign org-resolve-clocks to C-c C-r. I tried to just > modify the way that link and agendar are set: [...] > ,--- > | (global-set-key "\C-c\C-r" 'org-resolve-clocks) > `--- This one works for me. You could also use this: (global-set-key (kbd "C-c C-r") 'org-resolve-clocks) Best, Matt