From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: column view uses non-existent org-whitespace face Date: Thu, 25 Sep 2014 18:09:14 +0200 Message-ID: References: <87fvhb4pfz.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54649) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXBbo-0006FS-Iz for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 12:09:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXBbc-0007yA-3Y for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 12:09:32 -0400 Received: from mail-qc0-x22f.google.com ([2607:f8b0:400d:c01::22f]:33586) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXBbb-0007wX-VR for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 12:09:20 -0400 Received: by mail-qc0-f175.google.com with SMTP id o8so5376333qcw.6 for ; Thu, 25 Sep 2014 09:09:14 -0700 (PDT) In-Reply-To: <87fvhb4pfz.fsf@ericabrahamsen.net> 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: Eric Abrahamsen Cc: Org Mode Hi Eric On Tue, Aug 5, 2014 at 4:53 AM, Eric Abrahamsen wrote: > 2. The text for %ITEM has the face org-whitespace applied to the leading > stars, which doesn't exist anymore. I assume the intended effect was > that the stars take up space, emulating indentation, but not themselves > be visible. I guess that would be done by replacing the org-whitespace > face with whatever's being used as the column background color but I > don't know enough about faces to make that work. I also tried switching > 'org-whitespace to 'invisible, but that didn't do anything. This is in > org-columns-cleanup-item. > > [...] > The second would be nice to resolve -- > it's ugly! Same here. I just tried to hide the leading stars in column view by shifting the beginning of the overlay to the right in `org-columns-new-overlay' with (let ((ov (make-overlay (if org-hide-leading-stars (+ beg (org-current-level) -1) beg) end))) but this trial seems to have several issues and I don't know how to do it right. Michael