From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Baier Subject: Re: agenda configurable entry-text-mode Date: Wed, 9 Aug 2017 21:39:11 +0200 Message-ID: References: <871sp41jao.fsf@alphapapa.net> <87vamcdooq.fsf@alphapapa.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58993) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dfWpA-0002sx-Vk for emacs-orgmode@gnu.org; Wed, 09 Aug 2017 15:39:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfWp7-0001CX-L4 for emacs-orgmode@gnu.org; Wed, 09 Aug 2017 15:39:25 -0400 Received: from [195.159.176.226] (port=52753 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dfWp7-0001Bq-ED for emacs-orgmode@gnu.org; Wed, 09 Aug 2017 15:39:21 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1dfWox-0003HP-RT for emacs-orgmode@gnu.org; Wed, 09 Aug 2017 21:39:11 +0200 In-Reply-To: <87vamcdooq.fsf@alphapapa.net> Content-Language: en-US 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" To: emacs-orgmode@gnu.org On 07/29/2017 03:20 AM, Adam Porter wrote: > Alexander Baier writes: > >> Hi Adam, >> >> I hadn't heard of org-quick-peek. I found >> https://github.com/alphapapa/org-quick-peek but could not find the >> package on MELPA, do you know why this is the case? > > Hi Alexander, > > Actually I haven't submitted it to MELPA yet. I've been hoping to get > some more feedback and testing before doing that. I guess I should have > adjusted the readme accordingly. I would appreciate if you could give > it a quick test and let me know any feedback you may have. :) This looks really nice! A few things I discovered: 1. If the peek contains a link and I click on it with the left mouse button, the message "No link found" is displayed. 2. If a headline in the agenda contains a link to another headline and point is somewhere on that headline and I call org-quick-peek-link I get "Lisp error: (wrong-type-argument stringp nil)". 3. If point is on a link to another headline in a normal org buffer and I call org-quick-peek-link I get "Lisp error: (void-variable path)". This is fixed applying this patch: @@ -80,7 +80,7 @@ (org-show-following-heading nil) (org-show-entry-below nil) (org-show-siblings nil) - link type marker) + link type marker path) ;; From org.el (when (and (looking-at org-complex-heading-regexp)) Regards, -- Alex