notmuch-hello-mode-map removed

2021-01-17 Thread Jon Fineman
I just upgraded my notmuch library and noticed that per this thread the function notmuch-hello-mode-map was removed. https://nmbug.notmuchmail.org/nmweb/show/20200726165818.400-14-jonas%40bernoul.li I had been following this guide to map keys to various notmuch functions.

Re: notmuch-hello-mode-map removed

2021-01-17 Thread David Bremner
Jon Fineman writes: > I just upgraded my notmuch library and noticed that per this thread the > function notmuch-hello-mode-map was removed. > https://nmbug.notmuchmail.org/nmweb/show/20200726165818.400-14-jonas%40bernoul.li > > I had been following this guide to map keys to various notmuch >

Re: notmuch-hello-mode-map removed

2021-01-17 Thread Jon Fineman
Thank you. That worked. On Sun, 17 Jan 2021 20:42:27 + David Edmondson wrote: > On Sunday, 2021-01-17 at 15:16:20 -05, Jon Fineman wrote: > > > I just upgraded my notmuch library and noticed that per this thread > > the function notmuch-hello-mode-map was removed. > >

Re: notmuch-hello-mode-map removed

2021-01-17 Thread Tomas Nordin
Jon Fineman writes: > I just upgraded my notmuch library and noticed that per this thread the > function notmuch-hello-mode-map was removed. > https://nmbug.notmuchmail.org/nmweb/show/20200726165818.400-14-jonas%40bernoul.li > > I had been following this guide to map keys to various notmuch >

Re: notmuch-hello-mode-map removed

2021-01-17 Thread David Edmondson
On Sunday, 2021-01-17 at 15:16:20 -05, Jon Fineman wrote: > I just upgraded my notmuch library and noticed that per this thread the > function notmuch-hello-mode-map was removed. > https://nmbug.notmuchmail.org/nmweb/show/20200726165818.400-14-jonas%40bernoul.li > > I had been following this

[PATCH] test: add (back) upgrade tests

2021-01-17 Thread David Bremner
In ee897cab8b721 the upgrade tests from pre v3 databases were removed. The reasons for that are still valid, but we should still test the code paths that do the upgrade, and it is relatively straightforward to do that for v3 to v3 upgrades. --- test/README | 1 + test/T530-upgrade.sh |

Re: [PATCH] test: add (back) upgrade tests

2021-01-17 Thread Tomi Ollila
On Sun, Jan 17 2021, David Bremner wrote: > In ee897cab8b721 the upgrade tests from pre v3 databases were > removed. The reasons for that are still valid, but we should still > test the code paths that do the upgrade, and it is relatively > straightforward to do that for v3 to v3 upgrades. > ---

Re: [PATCH] test: add (back) upgrade tests

2021-01-17 Thread David Bremner
Tomi Ollila writes: > On Sun, Jan 17 2021, David Bremner wrote: > > (here we have to tolerate long line) I wrapped it onto 3 lines, which gets down to 82 colums > >> +delete_feature "$key" >> +notmuch new | grep "\(Welcome\|backup\)" > OUTPUT > > could do grep -e Welcome -e backup (but

[RFC PATCH] show: Add support for -format=raw -body=false

2021-01-17 Thread David Edmondson
Similar to other formats, allow the body to be omitted when outputting raw messages. This can be used by UI code to get the full headers of a message without the need to consume the body, which may be large. --- notmuch-show.c | 28 +--- 1 file changed, 25 insertions(+),