From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: minor documentation change suggestion Date: Wed, 04 Nov 2009 10:22:39 +0000 Message-ID: <87y6mmy4gg.wl%ucecesf@ucl.ac.uk> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N5d0x-0002Zy-6d for emacs-orgmode@gnu.org; Wed, 04 Nov 2009 05:22:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N5d0s-0002YV-4e for emacs-orgmode@gnu.org; Wed, 04 Nov 2009 05:22:54 -0500 Received: from [199.232.76.173] (port=50082 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N5d0r-0002YS-TJ for emacs-orgmode@gnu.org; Wed, 04 Nov 2009 05:22:49 -0500 Received: from vscane-b.ucl.ac.uk ([144.82.108.141]:38825) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N5d0r-0006Id-Dg for emacs-orgmode@gnu.org; Wed, 04 Nov 2009 05:22:49 -0500 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list Carsten et al., As always with org-mode, it does more than I could expect! I was writing some code to create org mode files which would have links to an external file. I wanted to link to a specific line number in that file so added "::NNN" (where NNN would be the line number) and thought I would have to make some changes to org-mode to support this. Well, of course I didn't have to make any changes! It's already there. However, the documentation is behind as a result. Can I suggest you add a line, such as below? --8<---------------cut here---------------start------------->8--- diff --git a/doc/org.texi b/doc/org.texi index 10d26fa..408710a 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -2754,6 +2754,7 @@ file:/home/dominik/images/jupiter.jpg @r{file, absolute path} /home/dominik/images/jupiter.jpg @r{same as above} file:papers/last.pdf @r{file, relative path} ./papers/last.pdf @r{same as above} +file:sometextfile::NNN @r{file with line number to jump to} file:projects.org @r{another Org file} file:projects.org::some words @r{text search in Org file} file:projects.org::*task title @r{heading search in Org file} --8<---------------cut here---------------end--------------->8--- Thanks, eric