From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: Bug: [PATCH] Make org-narrow-to-subtree usable out of Org mode [8.2.7b (release_8.2.7b-6-g07d470 @ /home/youngfrog/sourcetrees/org-mode/lisp/)] Date: Thu, 24 Jul 2014 17:00:39 +0200 Message-ID: <87iommn6nc.fsf@gmail.com> References: <87fvht9tdo.fsf@yahoo.fr> <87bnsfrycn.fsf@nicolasgoaziou.fr> <878uni7unf.fsf@geodiff-mac3.ulb.ac.be> <87tx66lur9.fsf@nicolasgoaziou.fr> <87r41a6dfw.fsf@geodiff-mac3.ulb.ac.be> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55188) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAKVv-0005Yy-N8 for emacs-orgmode@gnu.org; Thu, 24 Jul 2014 11:01:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XAKVp-0008NM-Mf for emacs-orgmode@gnu.org; Thu, 24 Jul 2014 11:00:59 -0400 Received: from plane.gmane.org ([80.91.229.3]:39729) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAKVp-0008NE-Fc for emacs-orgmode@gnu.org; Thu, 24 Jul 2014 11:00:53 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XAKVn-0000o3-Vu for emacs-orgmode@gnu.org; Thu, 24 Jul 2014 17:00:52 +0200 Received: from g231110163.adsl.alicedsl.de ([92.231.110.163]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 24 Jul 2014 17:00:51 +0200 Received: from tjolitz by g231110163.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 24 Jul 2014 17:00:51 +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 Nicolas Richard writes: > But now that I think about it, org mode simply should avoid narrow-map > completely : users (me included) won't randomly try to run > org-narrow-to-subtree outside of org buffers (and those who do deserve a > bad error message) but they might want to give "C-x n s" a try if it is > available. BTW, if you use outshine and ,---- | (setq outshine-use-speed-commands t) `---- then you have most of the Org speed-commands available outside of Org-mode too, including 'r' for narrow-to-subtree and 'w' for widen. Try ? on an outshine heading to get this help buffer: ,---- | User-defined Speed commands | =========================== | | Built-in Speed commands | ======================= | | Outline Navigation | ------------------ | n (outshine-speed-move-safe (quote outline-next-visible-heading)) | p (outshine-speed-move-safe (quote outline-previous-visible-heading)) | f (outshine-speed-move-safe (quote outline-forward-same-level)) | b (outshine-speed-move-safe (quote outline-backward-same-level)) | u (outshine-speed-move-safe (quote outline-up-heading)) | j outshine-goto | g outshine-refile | | Outline Visibility | ------------------ | c outline-cycle | C outshine-cycle-buffer | r outshine-narrow-to-subtree | w widen | = outshine-columns | | Outline Structure Editing | ------------------------- | ^ outline-move-subtree-up | < outline-move-subtree-down | + outline-demote | - outline-promote | i outshine-insert-heading | ^ outshine-sort | m outline-mark-subtree | | Clock Commands | -------------- | I outshine-clock-in | O outshine-clock-out | | Meta Data Editing | ----------------- | t outshine-todo | , outshine-priority | 0 (outshine-use-outorg (lambda nil (interactive) (org-priority 32))) | 1 (outshine-use-outorg (lambda nil (interactive) (org-priority 65))) | 2 (outshine-use-outorg (lambda nil (interactive) (org-priority 66))) | 3 (outshine-use-outorg (lambda nil (interactive) (org-priority 67))) | : outshine-set-tags-command | e outshine-set-effort | E outshine-inc-effort | v org-agenda | / outshine-sparse-tree | | Misc | ---- | o outshine-open-at-point | ? outshine-speed-command-help | < (outshine-agenda-set-restriction-lock) | > (outshine-agenda-remove-restriction-lock) | | [back] `---- -- cheers, Thorsten