* Summary buffer, limit to the registry marks
@ 2021-12-22 16:07 Uwe Brauer
2021-12-22 18:54 ` Emanuel Berg
0 siblings, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2021-12-22 16:07 UTC (permalink / raw)
To: ding
Hi
My registry marks setting is as follows
(setq gnus-registry-marks
'((Imp
:char ?i
:image "summary_important")
(WAIT
:char ?w
:image "summary_wait")
(DONE
:char ?d
:image "summary_personal")
(TODO
:char ?t
:image "summary_todo")
(Later
:char ?l
:image "summary_later")))
Now how can I limit the messages in my summary buffer to all registry
marks, like say TODO?
Regards
Uwe Brauer
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-22 16:07 Summary buffer, limit to the registry marks Uwe Brauer
@ 2021-12-22 18:54 ` Emanuel Berg
2021-12-23 16:38 ` Uwe Brauer
0 siblings, 1 reply; 9+ messages in thread
From: Emanuel Berg @ 2021-12-22 18:54 UTC (permalink / raw)
To: ding
Uwe Brauer wrote:
> My registry marks setting is as follows
>
> (setq gnus-registry-marks
> '((Imp
> :char ?i
> :image "summary_important")
> (WAIT
> :char ?w
> :image "summary_wait")
> (DONE
> :char ?d
> :image "summary_personal")
> (TODO
> :char ?t
> :image "summary_todo")
> (Later
> :char ?l
> :image "summary_later")))
>
> Now how can I limit the messages in my summary buffer to all registry
> marks, like say TODO?
`gnus-summary-limit-to-marks'?
BTW https://dataswamp.org/~incal/emacs-init/todo-did.el
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-22 18:54 ` Emanuel Berg
@ 2021-12-23 16:38 ` Uwe Brauer
2021-12-23 18:30 ` Eric Abrahamsen
0 siblings, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2021-12-23 16:38 UTC (permalink / raw)
To: ding
[-- Attachment #1: Type: text/plain, Size: 727 bytes --]
>>> "EB" == Emanuel Berg <moasenwood@zoho.eu> writes:
> Uwe Brauer wrote:
>> My registry marks setting is as follows
>>
>> (setq gnus-registry-marks
>> '((Imp
>> :char ?i
>> :image "summary_important")
>> (WAIT
>> :char ?w
>> :image "summary_wait")
>> (DONE
>> :char ?d
>> :image "summary_personal")
>> (TODO
>> :char ?t
>> :image "summary_todo")
>> (Later
>> :char ?l
>> :image "summary_later")))
>>
>> Now how can I limit the messages in my summary buffer to all registry
>> marks, like say TODO?
> `gnus-summary-limit-to-marks'?
I tried this of course, for example:
(gnus-summary-limit-to-marks "TODO" nil)
But no effect.
> BTW https://dataswamp.org/~incal/emacs-init/todo-did.el
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-23 16:38 ` Uwe Brauer
@ 2021-12-23 18:30 ` Eric Abrahamsen
2021-12-23 21:21 ` Uwe Brauer
0 siblings, 1 reply; 9+ messages in thread
From: Eric Abrahamsen @ 2021-12-23 18:30 UTC (permalink / raw)
To: ding
Uwe Brauer <oub@mat.ucm.es> writes:
>>>> "EB" == Emanuel Berg <moasenwood@zoho.eu> writes:
>
>> Uwe Brauer wrote:
>>> My registry marks setting is as follows
>>>
>>> (setq gnus-registry-marks
>>> '((Imp
>>> :char ?i
>>> :image "summary_important")
>>> (WAIT
>>> :char ?w
>>> :image "summary_wait")
>>> (DONE
>>> :char ?d
>>> :image "summary_personal")
>>> (TODO
>>> :char ?t
>>> :image "summary_todo")
>>> (Later
>>> :char ?l
>>> :image "summary_later")))
>>>
>>> Now how can I limit the messages in my summary buffer to all registry
>>> marks, like say TODO?
>
>> `gnus-summary-limit-to-marks'?
>
> I tried this of course, for example:
>
> (gnus-summary-limit-to-marks "TODO" nil)
>
> But no effect.
It needs to be the mark itself: try "t".
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-23 18:30 ` Eric Abrahamsen
@ 2021-12-23 21:21 ` Uwe Brauer
2021-12-23 22:46 ` Eric Abrahamsen
0 siblings, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2021-12-23 21:21 UTC (permalink / raw)
To: ding
[-- Attachment #1: Type: text/plain, Size: 1039 bytes --]
>>> "EA" == Eric Abrahamsen <eric@ericabrahamsen.net> writes:
> Uwe Brauer <oub@mat.ucm.es> writes:
>>>>> "EB" == Emanuel Berg <moasenwood@zoho.eu> writes:
>>
>>> Uwe Brauer wrote:
>>> My registry marks setting is as follows
>>>
>>> (setq gnus-registry-marks
>>> '((Imp
>>> :char ?i
>>> :image "summary_important")
>>> (WAIT
>>> :char ?w
>>> :image "summary_wait")
>>> (DONE
>>> :char ?d
>>> :image "summary_personal")
>>> (TODO
>>> :char ?t
>>> :image "summary_todo")
>>> (Later
>>> :char ?l
>>> :image "summary_later")))
>>>
>>> Now how can I limit the messages in my summary buffer to all registry
>>> marks, like say TODO?
>>
>>> `gnus-summary-limit-to-marks'?
>>
>> I tried this of course, for example:
>>
>> (gnus-summary-limit-to-marks "TODO" nil)
>>
>> But no effect.
> It needs to be the mark itself: try "t".
(gnus-summary-limit-to-marks "T" nil)
(gnus-summary-limit-to-marks "t" nil)
Does not work neither and marking all TODO manually defies the whole
idea of limiting
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-23 21:21 ` Uwe Brauer
@ 2021-12-23 22:46 ` Eric Abrahamsen
2021-12-23 22:48 ` Emanuel Berg
2022-01-05 13:51 ` Uwe Brauer
0 siblings, 2 replies; 9+ messages in thread
From: Eric Abrahamsen @ 2021-12-23 22:46 UTC (permalink / raw)
To: ding
Uwe Brauer <oub@mat.ucm.es> writes:
>>>> "EA" == Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>
>> Uwe Brauer <oub@mat.ucm.es> writes:
>>>>>> "EB" == Emanuel Berg <moasenwood@zoho.eu> writes:
>>>
>>>> Uwe Brauer wrote:
>>>> My registry marks setting is as follows
>>>>
>>>> (setq gnus-registry-marks
>>>> '((Imp
>>>> :char ?i
>>>> :image "summary_important")
>>>> (WAIT
>>>> :char ?w
>>>> :image "summary_wait")
>>>> (DONE
>>>> :char ?d
>>>> :image "summary_personal")
>>>> (TODO
>>>> :char ?t
>>>> :image "summary_todo")
>>>> (Later
>>>> :char ?l
>>>> :image "summary_later")))
>>>>
>>>> Now how can I limit the messages in my summary buffer to all registry
>>>> marks, like say TODO?
>>>
>>>> `gnus-summary-limit-to-marks'?
>>>
>>> I tried this of course, for example:
>>>
>>> (gnus-summary-limit-to-marks "TODO" nil)
>>>
>>> But no effect.
>
>> It needs to be the mark itself: try "t".
>
> (gnus-summary-limit-to-marks "T" nil)
>
> (gnus-summary-limit-to-marks "t" nil)
>
>
> Does not work neither
Nope, you're right, limit to marks doesn't check registry marks. Hang on
and I'll open a bug report for this.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-23 22:46 ` Eric Abrahamsen
@ 2021-12-23 22:48 ` Emanuel Berg
2022-01-05 13:51 ` Uwe Brauer
1 sibling, 0 replies; 9+ messages in thread
From: Emanuel Berg @ 2021-12-23 22:48 UTC (permalink / raw)
To: ding
Eric Abrahamsen wrote:
> Nope, you're right, limit to marks doesn't check registry
> marks. Hang on and I'll open a bug report for this.
Good job Uwe Brauer \o/
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2021-12-23 22:46 ` Eric Abrahamsen
2021-12-23 22:48 ` Emanuel Berg
@ 2022-01-05 13:51 ` Uwe Brauer
2022-01-06 18:34 ` Eric Abrahamsen
1 sibling, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2022-01-05 13:51 UTC (permalink / raw)
To: ding
[-- Attachment #1: Type: text/plain, Size: 212 bytes --]
> Uwe Brauer <oub@mat.ucm.es> writes:
> Nope, you're right, limit to marks doesn't check registry marks. Hang on
> and I'll open a bug report for this.
I cannot find your bug report, when did you submit it?
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Summary buffer, limit to the registry marks
2022-01-05 13:51 ` Uwe Brauer
@ 2022-01-06 18:34 ` Eric Abrahamsen
0 siblings, 0 replies; 9+ messages in thread
From: Eric Abrahamsen @ 2022-01-06 18:34 UTC (permalink / raw)
To: ding
Uwe Brauer <oub@mat.ucm.es> writes:
>> Uwe Brauer <oub@mat.ucm.es> writes:
>
>> Nope, you're right, limit to marks doesn't check registry marks. Hang on
>> and I'll open a bug report for this.
>
> I cannot find your bug report, when did you submit it?
I have not yet! I wrote most of the code I wanted to send along with the
report, and then got sucked back into work. I've had very little time
for coding recently, so nothing's progressing very quickly. It's still
on the list!
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-01-06 18:35 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-22 16:07 Summary buffer, limit to the registry marks Uwe Brauer
2021-12-22 18:54 ` Emanuel Berg
2021-12-23 16:38 ` Uwe Brauer
2021-12-23 18:30 ` Eric Abrahamsen
2021-12-23 21:21 ` Uwe Brauer
2021-12-23 22:46 ` Eric Abrahamsen
2021-12-23 22:48 ` Emanuel Berg
2022-01-05 13:51 ` Uwe Brauer
2022-01-06 18:34 ` Eric Abrahamsen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).