GNU bug report logs -
#67161
30.0.50; [PATCH] Add option `dired-filename-display-length'
Previous Next
Reported by: Liu Hui <liuhui1610 <at> gmail.com>
Date: Tue, 14 Nov 2023 09:55:02 UTC
Severity: normal
Tags: patch
Found in version 30.0.50
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> From: Liu Hui <liuhui1610 <at> gmail.com>
> Date: Mon, 20 Nov 2023 12:34:13 +0800
> Cc: stefankangas <at> gmail.com, monnier <at> iro.umontreal.ca, 67161 <at> debbugs.gnu.org
>
> > > BTW, I just find isearch doesn't handle hidden filenames based on
> > > 'invisible' text property, which needs to be fixed. So maybe an
> > > overlay-based approach is better? though I don't know if there is any
> > > possible problem with using overlays for this feature. WDYT?
> >
> > Doesn't "M-s i" during isearch handle this?
>
> No. I want to search text in hidden part rather than only in the
> visible part, which is necessary for users to find relevant files even
> if they are partly hidden.
>
> Here is an example illustrating the problem:
> 1. emacs -Q
> 2. type M-: (insert "visible " (propertize "hidden" 'invisible t))
> 3. C-s hidden
>
> isearch fails to match the invisible text by default, unless
> search-invisible is changed to t. However, the default value of
> search-invisible is open and it cannot be changed to t during isearch
> by M-s i.
>
> Therefore, I would like to change
>
> (put-text-property ell-beg (point) 'invisible 'dired-filename-hide)
>
> to
>
> (let ((ov (make-overlay ell-beg (point))))
> (overlay-put ov 'invisible 'dired-filename-hide)
> (overlay-put ov 'isearch-open-invisible t)
> (overlay-put ov 'evaporate t))
>
> in the attached patch, then text in hidden part can be matched
> regardless of search-invisible being open or t. It also has a bonus
> that hidden text can be revealed during isearch.
Juri, this seems to be a usability bug? Why does Isearch only look
into invisible overlay properties, but not text properties? IOW, why
doesn't "M-s i" set the value of isearch-invisible to t, not 'open'?
Or maybe 'open' should also search inside text properties, not just
overlays? In any case, the differences between properties and
overlays is unusual and IMO a misfeature. Can this be fixed?
This bug report was last modified 1 year and 234 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.