From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: How to set C-o back to open-line? Date: Fri, 17 May 2013 15:12:04 +0200 Message-ID: References: <87k3mysg8c.fsf@earlgrey.lan> Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:41909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdKVB-0001mq-Lg for Emacs-orgmode@gnu.org; Fri, 17 May 2013 09:15:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UdKV6-0001i3-O4 for Emacs-orgmode@gnu.org; Fri, 17 May 2013 09:15:17 -0400 Received: from mail-ea0-x234.google.com ([2a00:1450:4013:c01::234]:55401) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdKV6-0001hv-HS for Emacs-orgmode@gnu.org; Fri, 17 May 2013 09:15:12 -0400 Received: by mail-ea0-f180.google.com with SMTP id g10so2475583eak.39 for ; Fri, 17 May 2013 06:15:11 -0700 (PDT) In-Reply-To: <87k3mysg8c.fsf@earlgrey.lan> 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: Christopher Allan Webber Cc: Emacs-orgmode On 17.5.2013, at 00:38, Christopher Allan Webber = wrote: > 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. >=20 > However, I have no idea what org-defkey is doing, but I expected this = to > work: >=20 > (define-key org-mode-map (kbd "C-o") 'open-line) This one will work if you do it in org-mode-hook. We could also introduce a variable to turn off the special behavior, just like we do for C-a, C-e, and C-k. This seems to me a better option than to introduce additional context dependencies or use prefix arguments to influence the behavior. - Carsten >=20 > it isn't working! >=20 > How to get the standard-ol-open-line behavior back? >=20