From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Edit Links Date: Mon, 14 May 2012 10:36:54 -0400 Message-ID: <7220.1337006214@alphaville> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47554) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1STwOb-000654-VA for emacs-orgmode@gnu.org; Mon, 14 May 2012 10:37:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1STwOV-0003UY-KW for emacs-orgmode@gnu.org; Mon, 14 May 2012 10:37:09 -0400 Received: from g5t0006.atlanta.hp.com ([15.192.0.43]:35264) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1STwOV-0003UM-Ep for emacs-orgmode@gnu.org; Mon, 14 May 2012 10:37:03 -0400 In-Reply-To: Message from SW of "Mon, 14 May 2012 13:42:21 -0000." 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: SW Cc: emacs-orgmode@gnu.org SW wrote: > I inserted a link to a file with "C-c l", "file" and then navigated to the file > using autocompletion of the path and file names. Movinvg over that link and > pressing "C-c l" prompts me with the path to the file. Edits in this path will > not longer support autocompletion now. I have searched both generally and here > for phrases relating to editing links but have not found anything. > I don't really follow what you are trying to do but I wonder if you are describing your situation correctly. There are two relevant keybindings: o ``C-c l'' is the suggested global keybinding to org-store-link: what it does is squirrel away the information of where you are at the time so that it can be used *later* to insert a link - so all this does is remember the metadata of the link. o ``C-c C-l'' is an org-mode keybinding to org-insert-link: it takes the saved information that org-store-link squirreled away and creates a link at your current location. I suspect you are using the second. If so, it should prompt you in the minibuffer for a link. You enter something like file:/home/sw/.emacs RET and then it prompts you for a description - you enter the description of the link, something like my .emacs file RET Org will then insert a link like this: [[file:/home/sw/.emacs][my .emacs file]] into your file. It might *appear* different (what you see is just the description, usually in some highlight color and underlined), but nevertheless that's what the buffer contains (if you don't believe me, just cat the file). To follow the link, you just click on it (or do it in various other ways, depending on your setup; e.g. pressing C-c C-o on it should also follow the link). Hope this clarifies things, but if you have questions, don't hesitate to ask. However, try to make your question detailed enough so that we don't have to guess what you are trying to do. Nick