From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Vaidheeswaran C Newsgroups: gmane.emacs.help Subject: Re: C-= ? Date: Sun, 19 Jul 2015 09:07:35 +0530 Message-ID: <55AB1B7F.3010409@gmail.com> References: <87oaj99v18.fsf@skimble.plus.com> Reply-To: vaidheeswaran.chinnaraju@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1437277078 14304 80.91.229.3 (19 Jul 2015 03:37:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 19 Jul 2015 03:37:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 19 05:37:49 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZGfQD-0005ZA-6d for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Jul 2015 05:37:49 +0200 Original-Received: from localhost ([::1]:50390 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGfQC-0003lT-EU for geh-help-gnu-emacs@m.gmane.org; Sat, 18 Jul 2015 23:37:48 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGfPz-0003lH-Ku for help-gnu-emacs@gnu.org; Sat, 18 Jul 2015 23:37:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZGfPu-0002JN-LF for help-gnu-emacs@gnu.org; Sat, 18 Jul 2015 23:37:35 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:33845) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGfPu-0002J9-Ek for help-gnu-emacs@gnu.org; Sat, 18 Jul 2015 23:37:30 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZGfPt-0005Rm-3P for help-gnu-emacs@gnu.org; Sun, 19 Jul 2015 05:37:29 +0200 Original-Received: from 106.206.156.56 ([106.206.156.56]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 19 Jul 2015 05:37:29 +0200 Original-Received: from vaidheeswaran.chinnaraju by 106.206.156.56 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 19 Jul 2015 05:37:29 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 45 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 106.206.156.56 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Icedove/31.3.0 In-Reply-To: <87oaj99v18.fsf@skimble.plus.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:105840 Archived-At: On Sunday 19 July 2015 12:02 AM, Sharon Kimble wrote: > What is the macro/code or whatever that shows the tree of a file, i.e. > an outline of the file showing all its section headings, chapter > headings, etc in a separate buffer above your working buffer, and is > called by "C-=". I did use it very successfully, but I overwrote its key > sequence but now want to re-associate it and use it again. Can you help > please? > > Thanks > Sharon. > You are looking for M-x org-goto ---------------------------------------------------------------- C-c C-j runs the command org-goto (found in org-mode-map), which is an interactive compiled Lisp function in ‘org.el’. It is bound to C-c C-j, . (org-goto &optional ALTERNATIVE-INTERFACE) Look up a different location in the current file, keeping current visibility. When you want look-up or go to a different location in a document, the fastest way is often to fold the entire buffer and then dive into the tree. This method has the disadvantage, that the previous location will be folded, which may not be what you want. This command works around this by showing a copy of the current buffer in an indirect buffer, in overview mode. You can dive into the tree in that copy, use org-occur and incremental search to find a location. When pressing RET or ‘Q’, the command returns to the original buffer in which the visibility is still unchanged. After RET it will also jump to the location selected in the indirect buffer and expose the headline hierarchy above. With a prefix argument, use the alternative interface: e.g. if ‘org-goto-interface’ is 'outline use 'outline-path-completion.