From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: How to set C-o back to open-line? Date: Fri, 17 May 2013 07:26:27 -0500 Message-ID: <87fvxlssgm.fsf@earlgrey.lan> References: <87k3mysg8c.fsf@earlgrey.lan>, <87ip2is5ku.fsf@earlgrey.lan>, <5195C5C5.3050705@easy-emacs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdJk3-0002Nz-IS for emacs-orgmode@gnu.org; Fri, 17 May 2013 08:26:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UdJk0-00018n-Df for emacs-orgmode@gnu.org; Fri, 17 May 2013 08:26:35 -0400 Received: from li424-160.members.linode.com ([50.116.34.160]:45961 helo=dustycloud.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdJk0-00018c-9v for emacs-orgmode@gnu.org; Fri, 17 May 2013 08:26:32 -0400 In-reply-to: <5195C5C5.3050705@easy-emacs.de> 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: =?utf-8?Q?Andreas_R=C3=B6hler?= Cc: emacs-orgmode@gnu.org Andreas R=C3=B6hler writes: > Installing this instead should fix it: > > (defun org-open-line (n) > "Insert a new row in tables, call `open-line' elsewhere. > With \C-u NUMBER `open-line' is called the common way also in table con= text" > (interactive "*P") > (cond (n > (open-line (prefix-numeric-value n))) > ((org-at-table-p) > (org-table-insert-row)) > (t (open-line (prefix-numeric-value n))))) > > Cheers, > > Andreas Hm, alright. Sadly there seems to be no way to change the key (very un-emacs like?) So if redefining it is the way, I replaced with the much simpler: (setq org-open-line 'open-line) Much better! Hopefully no tooling ever makes use of org-open-line, shooting me in the foot... :)