GNU bug report logs -
#21140
25.0.50; Isearch "char-fold" by default
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 21140 in the body.
You can then email your comments to 21140 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Mon, 27 Jul 2015 13:47:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sebastien Vauban <sva-news <at> mygooglest.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Mon, 27 Jul 2015 13:47:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Using Isearch under Emacs 25.0 really puzzles me.
First, the default behavior seems changed, and I'm not really aware
(yet) of what exactly "char folding" is. I did not found any definition
for this, even if I have some ideas.
Second, I don't think the new default is right. I prefer to search for
text, not for regexps by default. Otherwise, we could also invert `C-s'
and `C-M-s', right?
Finally, it *seems* buggy to me when using `C-w' to complete the search
pattern (or shouldn't we use that anymore?).
Try it with the following example:
--8<---------------cut here---------------start------------->8---
;; some function
(turn-on-orgstruct++)
;; other function
(anzu--turn-on)
--8<---------------cut here---------------end--------------->8---
As you can see on http://www.screencast.com/t/wx7r9UYK:
- Completing "turn" with `C-w' will go over the 2 last "+" signs as if
they did not exist. In Emacs 24, each "+" char was added one by one.
- Completing "anzu" with `C-w' will simplify the 2 "-" signs as being
just 1, making the search find no string at the end!
- Completing "zu" with `C-w' will add "zu" to the pattern, multiple
times...
Isearch becomes quite complex to use IMHO.
PS- BTW, Anzu seems completely lost in Org files, when now run from
Emacs 25.
Best regards,
Seb
--
Sebastien Vauban
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Mon, 27 Jul 2015 14:25:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 21140 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
> First, the default behavior seems changed, and I'm not really aware
> (yet) of what exactly "char folding" is. I did not found any definition
> for this, even if I have some ideas.
There's another thread here about hiding that string from the prompt. I
agree it's a little confusing, and char folding can be used without
flashing it on the user. Somebody offered to do something about it, though
I forget who.
> Second, I don't think the new default is right. I prefer to search for
> text, not for regexps by default. Otherwise, we could also invert `C-s'
> and `C-M-s', right?
Char fold search is a text search, not a regexp search. It does use a
regexp underneath, but that should be invisible to the user. You type some
text and it matches that text or similar texts.
> Finally, it *seems* buggy to me when using `C-w' to complete the search
> pattern (or shouldn't we use that anymore?).
I can't see your link on my phone, but if it's like you describe then it's
certainly a bug.
I'll try out your examples when I get home.
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Mon, 27 Jul 2015 14:35:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
>> First, the default behavior seems changed, and I'm not really aware
>> (yet) of what exactly "char folding" is. I did not found any
>> definition for this, even if I have some ideas.
>
> There's another thread here about hiding that string from the
> prompt. I agree it's a little confusing, and char folding can be used
> without flashing it on the user. Somebody offered to do something
> about it, though I forget who.
I wasn't specifically asking to remove it from the prompt. If "char-fold
isearch" is a different beast from the "default Emacs 24 isearch", then
it should be visible somehow.
And I've no current opinion on whether or not that should be displayed
in the prompt (or somewhere else).
>> Second, I don't think the new default is right. I prefer to search
>> for text, not for regexps by default. Otherwise, we could also
>> invert `C-s' and `C-M-s', right?
>
> Char fold search is a text search, not a regexp search. It does use
> a regexp underneath, but that should be invisible to the user. You
> type some text and it matches that text or similar texts.
"Char fold" search is a "fuzzy" search, then, similar to
https://github.com/auto-complete/fuzzy-el?
What comes the name "char fold" from? It's not very intuitive to me
that it's some sort of fuzzy search; moreover, it looks like "case fold"
search, which is again something different...
>> Finally, it *seems* buggy to me when using `C-w' to complete the
>> search pattern (or shouldn't we use that anymore?).
>
> I can't see your link on my phone, but if it's like you describe then
> it's certainly a bug. I'll try out your examples when I get home.
Thanks!
Best regards,
Seb
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Mon, 27 Jul 2015 14:51:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 21140 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
> > Char fold search is a text search, not a regexp search. It does use
> > a regexp underneath, but that should be invisible to the user. You
> > type some text and it matches that text or similar texts.
>
> "Char fold" search is a "fuzzy" search, then, similar to
> https://github.com/auto-complete/fuzzy-el?
Not quite. It just allows simple ascii characters to match their complex
unicode counterparts.
For instance, if you search for "a" you will also match "á" and "ã".
> What comes the name "char fold" from? It's not very intuitive to me
> that it's some sort of fuzzy search; moreover, it looks like "case fold"
> search, which is again something different...
It is exactly like case fold. ;-)
Where case folding folds together "a" and "A", char folding folds together
"a", "á" and "ã".
The name is also something under discussion. Suggestions of something more
intuitive are very much welcome.
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Mon, 27 Jul 2015 22:36:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> There's another thread here about hiding that string from the prompt. I
> agree it's a little confusing, and char folding can be used without
> flashing it on the user. Somebody offered to do something about it, though
> I forget who.
The idea was to not display the search parameters that have default values,
i.e. if char folding is enabled by default then to not display “Char-fold”.
But the problem is to find a name complementary to char-folding
to display when the default char-folding is disabled by ‘M-s '’.
In case of case-folding the parameter names used in isearch messages are:
“case-sensitive” and “case-insensitive”.
By analogy, can we use: “char-sensitive” and “char-insensitive”?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 01:17:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 21140 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On 07/27/2015 07:50 AM, Artur Malabarba wrote:
>> > Char fold search is a text search, not a regexp search. It does use
>> > a regexp underneath, but that should be invisible to the user. You
>> > type some text and it matches that text or similar texts.
>>
>> "Char fold" search is a "fuzzy" search, then, similar to
>> https://github.com/auto-complete/fuzzy-el?
>
> Not quite. It just allows simple ascii characters to match their complex
> unicode counterparts.
> For instance, if you search for "a" you will also match "á" and "ã".
>
>> What comes the name "char fold" from? It's not very intuitive to me
>> that it's some sort of fuzzy search; moreover, it looks like "case fold"
>> search, which is again something different...
>
> It is exactly like case fold. ;-)
> Where case folding folds together "a" and "A", char folding folds
> together "a", "á" and "ã".
>
> The name is also something under discussion. Suggestions of something
> more intuitive are very much welcome.
>
I've been using this bit of awfulness to solve the "char-fold" thing. It
hides "char-fold" by default and displays "raw" if we've turned off
char-folding. It still displays "raw regex isearch" though.
I like the idea of taking over the modeline to display isearch state.
(defun fix-isearch--describe-word-mode (word-mode &optional space-before)
(let ((description
(cond ((eq word-mode 'character-fold-to-regexp) "")
((and (symbolp word-mode)
(get word-mode 'isearch-message-prefix))
(get word-mode 'isearch-message-prefix))
(word-mode "word ")
(t "raw "))))
(if space-before
;; Move space from the end to the beginning.
(replace-regexp-in-string "\\(.*\\) \\'" " \\1" description)
description)))
(when (fboundp 'isearch--describe-word-mode)
(advice-add 'isearch--describe-word-mode
:override
'fix-isearch--describe-word-mode))
[signature.asc (application/pgp-signature, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 02:35:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> From: Juri Linkov <juri <at> linkov.net>
> Date: Tue, 28 Jul 2015 01:33:35 +0300
> Cc: Sebastien Vauban <sva-news <at> mygooglest.com>, 21140 <at> debbugs.gnu.org
>
> > There's another thread here about hiding that string from the prompt. I
> > agree it's a little confusing, and char folding can be used without
> > flashing it on the user. Somebody offered to do something about it, though
> > I forget who.
>
> The idea was to not display the search parameters that have default values,
> i.e. if char folding is enabled by default then to not display “Char-fold”.
> But the problem is to find a name complementary to char-folding
> to display when the default char-folding is disabled by ‘M-s '’.
>
> In case of case-folding the parameter names used in isearch messages are:
> “case-sensitive” and “case-insensitive”.
>
> By analogy, can we use: “char-sensitive” and “char-insensitive”?
I doubt that will be clear to users, since no one else calls this by
that name. "Folding" is the accepted terminology, though perhaps
"char-fold" is also slightly unclear. How about just "Fold"?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 09:14:01 GMT)
Full text and
rfc822 format available.
Message #26 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> Try it with the following example:
>
> --8<---------------cut here---------------start------------->8---
> ;; some function
> (turn-on-orgstruct++)
>
> ;; other function
> (anzu--turn-on)
> --8<---------------cut here---------------end--------------->8---
>
> As you can see on http://www.screencast.com/t/wx7r9UYK:
>
> - Completing "turn" with `C-w' will go over the 2 last "+" signs as if
> they did not exist. In Emacs 24, each "+" char was added one by one.
>
> - Completing "anzu" with `C-w' will simplify the 2 "-" signs as being
> just 1, making the search find no string at the end!
>
> - Completing "zu" with `C-w' will add "zu" to the pattern, multiple
> times...
Hi Sebastien, I couldn't reproduce any of this (starting with emacs -Q).
Could you check that C-w really is bound to
`isearch-yank-word-or-char' for you (With no advices or anything)? And
then, could you try with emacs -Q?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 09:24:01 GMT)
Full text and
rfc822 format available.
Message #29 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Hi Artur,
Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
>> Try it with the following example:
>>
>> --8<---------------cut here---------------start------------->8---
>> ;; some function
>> (turn-on-orgstruct++)
>>
>> ;; other function
>> (anzu--turn-on)
>> --8<---------------cut here---------------end--------------->8---
>>
>> As you can see on http://www.screencast.com/t/wx7r9UYK:
>>
>> - Completing "turn" with `C-w' will go over the 2 last "+" signs as if
>> they did not exist. In Emacs 24, each "+" char was added one by one.
>>
>> - Completing "anzu" with `C-w' will simplify the 2 "-" signs as being
>> just 1, making the search find no string at the end!
>>
>> - Completing "zu" with `C-w' will add "zu" to the pattern, multiple
>> times...
>
> I couldn't reproduce any of this (starting with emacs -Q).
Aarrgg...
> Could you check that C-w really is bound to
> `isearch-yank-word-or-char' for you (With no advices or anything)?
How can I check that? `C-h k' isn't available from with `C-s', right?
> And then, could you try with emacs -Q?
Can't do it right away, but soon.
Best regards,
Seb
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 09:27:01 GMT)
Full text and
rfc822 format available.
Message #32 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Sebastien Vauban <sva-news <at> mygooglest.com> writes:
> Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
>> Could you check that C-w really is bound to
>> `isearch-yank-word-or-char' for you (With no advices or anything)?
>
> How can I check that? `C-h k' isn't available from with `C-s', right?
I mean: is there a way to check for that easily (like `C-h k') --
without having to dissect my Emacs customization file?
Best regards,
Seb
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 09:48:02 GMT)
Full text and
rfc822 format available.
Message #35 received at 21140 <at> debbugs.gnu.org (full text, mbox):
2015-07-28 10:26 GMT+01:00 Sebastien Vauban <sva-news <at> mygooglest.com>:
> Sebastien Vauban <sva-news <at> mygooglest.com> writes:
>> Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
>>> Could you check that C-w really is bound to
>>> `isearch-yank-word-or-char' for you (With no advices or anything)?
>>
>> How can I check that? `C-h k' isn't available from with `C-s', right?
>
> I mean: is there a way to check for that easily (like `C-h k') --
> without having to dissect my Emacs customization file?
`C-h k' is available from `C-s' ;-)
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 09:58:02 GMT)
Full text and
rfc822 format available.
Message #38 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
> 2015-07-28 10:26 GMT+01:00 Sebastien Vauban <sva-news <at> mygooglest.com>:
>> Sebastien Vauban <sva-news <at> mygooglest.com> writes:
>>> Artur Malabarba <bruce.connor.am <at> gmail.com> writes:
>>>> Could you check that C-w really is bound to
>>>> `isearch-yank-word-or-char' for you (With no advices or anything)?
>>>
>>> How can I check that? `C-h k' isn't available from with `C-s', right?
>>
>> I mean: is there a way to check for that easily (like `C-h k') --
>> without having to dissect my Emacs customization file?
>
> `C-h k' is available from `C-s' ;-)
Dunno anymore why I was thinking the opposite. Thanks for correcting me
(and, again, proof that Emacs is very superior!).
So, to answer your question:
┌────
│ C-w runs the command isearch-yank-word-or-char (found in
│ overriding-terminal-local-map), which is an interactive compiled Lisp function
│ in ‘isearch.el’.
│
│ (isearch-yank-word-or-char)
│
│ Pull next character, subword or word from buffer into search string.
│ Subword is used when ‘subword-mode’ is activated.
└────
Best regards,
Seb
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 13:13:02 GMT)
Full text and
rfc822 format available.
Message #41 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> So, to answer your question: [...]
OK, that looks correct. And can you reproduce your problem with emacs -Q?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Tue, 28 Jul 2015 22:25:02 GMT)
Full text and
rfc822 format available.
Message #44 received at 21140 <at> debbugs.gnu.org (full text, mbox):
>> In case of case-folding the parameter names used in isearch messages are:
>> “case-sensitive” and “case-insensitive”.
>>
>> By analogy, can we use: “char-sensitive” and “char-insensitive”?
>
> I doubt that will be clear to users, since no one else calls this by
> that name. "Folding" is the accepted terminology, though perhaps
> "char-fold" is also slightly unclear. How about just "Fold"?
“Fold” is too broad. “Char-fold” is more concise and seems is
the accepted terminology, e.g.
https://www.elastic.co/guide/en/elasticsearch/guide/current/character-folding.html
http://userguide.icu-project.org/transforms/casemappings
Or does Unicode.org have a better name? I can find only this draft
http://www.unicode.org/reports/tr30/tr30-4.html
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Wed, 29 Jul 2015 09:03:02 GMT)
Full text and
rfc822 format available.
Message #47 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Juri Linkov <juri <at> linkov.net> writes:
>>> In case of case-folding the parameter names used in isearch messages are:
>>> “case-sensitive” and “case-insensitive”.
>>>
>>> By analogy, can we use: “char-sensitive” and “char-insensitive”?
>>
>> I doubt that will be clear to users, since no one else calls this by
>> that name. "Folding" is the accepted terminology, though perhaps
>> "char-fold" is also slightly unclear. How about just "Fold"?
>
> “Fold” is too broad. “Char-fold” is more concise and seems is
> the accepted terminology, e.g.
> https://www.elastic.co/guide/en/elasticsearch/guide/current/character-folding.html
> http://userguide.icu-project.org/transforms/casemappings
> Or does Unicode.org have a better name? I can find only this draft
> http://www.unicode.org/reports/tr30/tr30-4.html
Didn't know about the term (and the functionality) "char-folding". If
that's somehow "official" or "standard", let's keep it. BTW, is this
implemented in other editors? How do they call that functionality?
No, the question is: where to put those "toggles"? In the prompt, in
the modeline or nowhere?
Best regards,
Seb
--
Sebastien Vauban
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Wed, 29 Jul 2015 16:45:01 GMT)
Full text and
rfc822 format available.
Message #50 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> From: Juri Linkov <juri <at> linkov.net>
> Cc: bruce.connor.am <at> gmail.com, sva-news <at> mygooglest.com, 21140 <at> debbugs.gnu.org
> Date: Wed, 29 Jul 2015 01:21:45 +0300
>
> >> In case of case-folding the parameter names used in isearch messages are:
> >> “case-sensitive” and “case-insensitive”.
> >>
> >> By analogy, can we use: “char-sensitive” and “char-insensitive”?
> >
> > I doubt that will be clear to users, since no one else calls this by
> > that name. "Folding" is the accepted terminology, though perhaps
> > "char-fold" is also slightly unclear. How about just "Fold"?
>
> “Fold” is too broad. “Char-fold” is more concise and seems is
> the accepted terminology, e.g.
> https://www.elastic.co/guide/en/elasticsearch/guide/current/character-folding.html
> http://userguide.icu-project.org/transforms/casemappings
"Character folding" or simply "folding" is accepted terminology. But
"char-fold" is not, it's a confusing shorthand. That's why I
suggested "fold", which is accepted terminology and is short.
> Or does Unicode.org have a better name? I can find only this draft
> http://www.unicode.org/reports/tr30/tr30-4.html
Unicode uses "folding", see
http://unicode.org/reports/tr10/#Collation_Folding.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Wed, 29 Jul 2015 22:59:02 GMT)
Full text and
rfc822 format available.
Message #53 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> Didn't know about the term (and the functionality) "char-folding". If
> that's somehow "official" or "standard", let's keep it. BTW, is this
> implemented in other editors? How do they call that functionality?
Don't know about other editors, but in Chromium there is something like
“string folding”.
> No, the question is: where to put those "toggles"? In the prompt, in
> the modeline or nowhere?
There is no much free space in the modeline unless you mean
hiding all toggles under its submenu.
Another suggestion was to add an extra line to the prompt that takes
precious space as well, but it could be shown/hidden with a key.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Wed, 29 Jul 2015 22:59:02 GMT)
Full text and
rfc822 format available.
Message #56 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> "Character folding" or simply "folding" is accepted terminology. But
> "char-fold" is not, it's a confusing shorthand. That's why I
> suggested "fold", which is accepted terminology and is short.
Alas, in Emacs the term “folding” is already taken and means
zooming in on outlines: (info "(emacs) Foldout")
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Wed, 29 Jul 2015 23:12:01 GMT)
Full text and
rfc822 format available.
Message #59 received at 21140 <at> debbugs.gnu.org (full text, mbox):
>> No, the question is: where to put those "toggles"? In the prompt, in
>> the modeline or nowhere?
>
> There is no much free space in the modeline unless you mean
> hiding all toggles under its submenu.
>
> Another suggestion was to add an extra line to the prompt that takes
> precious space as well, but it could be shown/hidden with a key.
I tried this, actually. It can be made very nice and informative
(showing the state of the toggles and the key that's bound to each
one), but I couldn't make them clickable (because it's in the
echo-area).
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Thu, 30 Jul 2015 02:45:01 GMT)
Full text and
rfc822 format available.
Message #62 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> From: Juri Linkov <juri <at> linkov.net>
> Cc: bruce.connor.am <at> gmail.com, sva-news <at> mygooglest.com, 21140 <at> debbugs.gnu.org
> Date: Thu, 30 Jul 2015 01:51:41 +0300
>
> > "Character folding" or simply "folding" is accepted terminology. But
> > "char-fold" is not, it's a confusing shorthand. That's why I
> > suggested "fold", which is accepted terminology and is short.
>
> Alas, in Emacs the term “folding” is already taken and means
> zooming in on outlines: (info "(emacs) Foldout")
I see no problem here, since the context is very different.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Thu, 30 Jul 2015 08:05:02 GMT)
Full text and
rfc822 format available.
Message #65 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Juri Linkov <juri <at> linkov.net> writes:
>> Didn't know about the term (and the functionality) "char-folding". If
>> that's somehow "official" or "standard", let's keep it. BTW, is this
>> implemented in other editors? How do they call that functionality?
>
> Don't know about other editors, but in Chromium there is something like
> “string folding”.
Another way to name the functionality could be "Strip-accents Isearch"
or so?
Best regards,
Seb
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Thu, 30 Jul 2015 16:31:02 GMT)
Full text and
rfc822 format available.
Message #68 received at 21140 <at> debbugs.gnu.org (full text, mbox):
> From: Sebastien Vauban <sva-news <at> mygooglest.com>
> Date: Thu, 30 Jul 2015 10:04:25 +0200
> Cc: bruce.connor.am <at> gmail.com, 21140 <at> debbugs.gnu.org
>
> Another way to name the functionality could be "Strip-accents Isearch"
> or so?
No, that would be too narrow. This feature does much more than just
ignore the accents, it will, for example, find ² and ② when you search
for 2.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Thu, 30 Jul 2015 21:25:02 GMT)
Full text and
rfc822 format available.
Message #71 received at 21140 <at> debbugs.gnu.org (full text, mbox):
>> > "Character folding" or simply "folding" is accepted terminology. But
>> > "char-fold" is not, it's a confusing shorthand. That's why I
>> > suggested "fold", which is accepted terminology and is short.
>>
>> Alas, in Emacs the term “folding” is already taken and means
>> zooming in on outlines: (info "(emacs) Foldout")
>
> I see no problem here, since the context is very different.
Not very different since isearch involves outlines:
(defcustom search-invisible 'open
"If t incremental search/query-replace can match hidden text.
A nil value means don't match invisible text.
When the value is `open', if the text matched is made invisible by
an overlay having an `invisible' property and that overlay has a property
`isearch-open-invisible', then incremental search will show the contents.
(This applies when using `outline.el' and `hideshow.el'.)
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Sat, 30 Apr 2016 12:11:01 GMT)
Full text and
rfc822 format available.
Message #74 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Hi all,
is it right that this bug report turned into a general discussion? If
yes, how about closing it?
Best,
--
Marcin
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#21140
; Package
emacs
.
(Thu, 26 Sep 2019 14:04:02 GMT)
Full text and
rfc822 format available.
Message #77 received at 21140 <at> debbugs.gnu.org (full text, mbox):
Marcin Borkowski <mbork <at> mbork.pl> writes:
> Hi all,
>
> is it right that this bug report turned into a general discussion? If
> yes, how about closing it?
>
> Best,
That was 3 years ago. Having read the thread here, I don't see
anything actionable besides a general discussion either.
Does anyone object to closing it?
Best regards,
Stefan Kangas
Reply sent
to
Stefan Kangas <stefan <at> marxist.se>
:
You have taken responsibility.
(Tue, 29 Oct 2019 04:40:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sebastien Vauban <sva-news <at> mygooglest.com>
:
bug acknowledged by developer.
(Tue, 29 Oct 2019 04:40:02 GMT)
Full text and
rfc822 format available.
Message #82 received at 21140-done <at> debbugs.gnu.org (full text, mbox):
Stefan Kangas <stefan <at> marxist.se> writes:
> > is it right that this bug report turned into a general discussion? If
> > yes, how about closing it?
> >
> > Best,
>
> That was 3 years ago. Having read the thread here, I don't see
> anything actionable besides a general discussion either.
>
> Does anyone object to closing it?
No objections within 4 weeks, so I'm closing this now.
Best regards,
Stefan Kangas
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 26 Nov 2019 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 211 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.