From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: move multiple lines of text at the same time Date: Thu, 12 Jul 2012 12:01:10 +0200 Message-ID: <87liipz4bd.fsf@altern.org> References: <1340813198.29128.YahooMailNeo@web163105.mail.bf1.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45497) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpGCO-0006mJ-Kc for emacs-orgmode@gnu.org; Thu, 12 Jul 2012 06:00:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SpGCH-0004hJ-J8 for emacs-orgmode@gnu.org; Thu, 12 Jul 2012 06:00:40 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:50492) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpGCH-0004h9-A4 for emacs-orgmode@gnu.org; Thu, 12 Jul 2012 06:00:33 -0400 Received: by weys10 with SMTP id s10so466548wey.0 for ; Thu, 12 Jul 2012 03:00:32 -0700 (PDT) In-Reply-To: <1340813198.29128.YahooMailNeo@web163105.mail.bf1.yahoo.com> (Enda's message of "Wed, 27 Jun 2012 09:06:38 -0700 (PDT)") 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: Enda Cc: "emacs-orgmode@gnu.org" Enda writes: > Say I have two lines of text like so, and I want to move both of them > at the same time, could there be a C-u 2 M-down in order to do this. I've implemented this instead: when a region is active, M- will move the region up/down. Note that org-element.el can help with such features: load contrib/lisp/org-element.el and try `org-element-drag-forward'. It moves the current element forward, as advertized. The plan is to bind M- to `org-element-drag-forward' soon. -- Bastien