From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: How to set C-o back to open-line? Date: Thu, 16 May 2013 19:04:38 -0400 Message-ID: <87r4h6msqh.fsf@pierrot.dokosmarshall.org> References: <87k3mysg8c.fsf@earlgrey.lan> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60210) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ud7EC-0001YC-R9 for emacs-orgmode@gnu.org; Thu, 16 May 2013 19:04:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ud7EB-00039j-TA for emacs-orgmode@gnu.org; Thu, 16 May 2013 19:04:52 -0400 Received: from plane.gmane.org ([80.91.229.3]:41443) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ud7EB-00039c-Mt for emacs-orgmode@gnu.org; Thu, 16 May 2013 19:04:51 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Ud7E9-0004eU-O2 for emacs-orgmode@gnu.org; Fri, 17 May 2013 01:04:49 +0200 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 May 2013 01:04:49 +0200 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 May 2013 01:04:49 +0200 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: emacs-orgmode@gnu.org Christopher Allan Webber writes: > I really hate org-open-line... I can see why people might want it, but > it's messed up my workflow. I'd like to set C-o back. > > However, I have no idea what org-defkey is doing, but I expected this to > work: > > (define-key org-mode-map (kbd "C-o") 'open-line) > > it isn't working! > > How to get the standard-ol-open-line behavior back? > > Try (define-key org-mode-map [remap open-line] nil) You may have to do it in a hook. See (info "(elisp) Remapping commands") for details. -- Nick