From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Prince Subject: Re: Emacs Prelude Date: Sun, 04 Dec 2011 11:01:27 -0500 Message-ID: <87aa78gwbs.fsf@hermes.hocat.ca> References: <2bf2215563437dcc51cd9a681dd02ab3@cerebralrift.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55594) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RXEVS-000707-9n for emacs-orgmode@gnu.org; Sun, 04 Dec 2011 11:01:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RXEVR-00079r-C4 for emacs-orgmode@gnu.org; Sun, 04 Dec 2011 11:01:34 -0500 Received: from socrates.hocat.ca ([76.10.188.53]:52346) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RXEVR-00079N-6U for emacs-orgmode@gnu.org; Sun, 04 Dec 2011 11:01:33 -0500 In-Reply-To: <2bf2215563437dcc51cd9a681dd02ab3@cerebralrift.org> 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: SndChaser , emacs-orgmode@gnu.org On Fri, 02 Dec 2011 20:25:21 -0600, SndChaser wrote: > 2) Has someone bound: org-do-promote, org-do-demote, > org-promote-subtree. org-demote-subtree, org-move-subtree-up and > org-move-subtree-down to another set of keys that is as handy / workable > as the original bindings? Well, I use the vi emulation provided by evil, and have bound M-{h,j,k,l} to org-meta*: #+BEGIN_SRC emacs-lisp (mapcar (lambda (state) (evil-declare-key state org-mode-map (kbd "M-l") 'org-metaright (kbd "M-h") 'org-metaleft (kbd "M-k") 'org-metaup (kbd "M-j") 'org-metadown (kbd "M-L") 'org-shiftmetaright (kbd "M-H") 'org-shiftmetaleft (kbd "M-K") 'org-shiftmetaup (kbd "M-J") 'org-shiftmetadown)) '(normal insert)) #+END_SRC Tom