unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
@ 2012-02-13 11:09 Dmitry Kurochkin
  2012-02-13 11:30 ` Tomi Ollila
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Dmitry Kurochkin @ 2012-02-13 11:09 UTC (permalink / raw)
  To: notmuch

The notmuch-show view refresh function (`notmuch-show-refresh-view',
bound to "=") accepts an optional RETAIN-STATE argument.  The patch
allows to set this argument interactively by using "C-u =".
---
 emacs/notmuch-show.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index 43408d9..aa9ccee 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -1124,7 +1124,7 @@ This includes:
 Refreshes the current view, observing changes in display
 preferences. If RETAIN-STATE is non-nil then the state of the
 buffer is stored and re-applied after the refresh."
-  (interactive)
+  (interactive "P")
   (let ((inhibit-read-only t)
 	state)
     (if retain-state
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 11:09 [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively Dmitry Kurochkin
@ 2012-02-13 11:30 ` Tomi Ollila
  2012-02-13 15:29 ` Austin Clements
  2012-02-15  3:49 ` David Bremner
  2 siblings, 0 replies; 8+ messages in thread
From: Tomi Ollila @ 2012-02-13 11:30 UTC (permalink / raw)
  To: Dmitry Kurochkin, notmuch

On Mon, 13 Feb 2012 15:09:07 +0400, Dmitry Kurochkin <dmitry.kurochkin@gmail.com> wrote:
> The notmuch-show view refresh function (`notmuch-show-refresh-view',
> bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> allows to set this argument interactively by using "C-u =".
> ---

+1

Tomi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 11:09 [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively Dmitry Kurochkin
  2012-02-13 11:30 ` Tomi Ollila
@ 2012-02-13 15:29 ` Austin Clements
  2012-02-13 15:44   ` David Edmondson
                     ` (2 more replies)
  2012-02-15  3:49 ` David Bremner
  2 siblings, 3 replies; 8+ messages in thread
From: Austin Clements @ 2012-02-13 15:29 UTC (permalink / raw)
  To: Dmitry Kurochkin; +Cc: notmuch

Quoth Dmitry Kurochkin on Feb 13 at  3:09 pm:
> The notmuch-show view refresh function (`notmuch-show-refresh-view',
> bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> allows to set this argument interactively by using "C-u =".

Why do we not *always* want this?

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 15:29 ` Austin Clements
@ 2012-02-13 15:44   ` David Edmondson
  2012-02-13 15:59   ` Dmitry Kurochkin
  2012-02-13 19:02   ` Daniel Schoepe
  2 siblings, 0 replies; 8+ messages in thread
From: David Edmondson @ 2012-02-13 15:44 UTC (permalink / raw)
  To: Austin Clements; +Cc: notmuch

[-- Attachment #1: Type: text/plain, Size: 419 bytes --]

* amdragon@MIT.EDU [2012-02-13 Mon 15:29]
> Quoth Dmitry Kurochkin on Feb 13 at  3:09 pm:
>> The notmuch-show view refresh function (`notmuch-show-refresh-view',
>> bound to "=") accepts an optional RETAIN-STATE argument.  The patch
>> allows to set this argument interactively by using "C-u =".
>
> Why do we not *always* want this?

Because sometimes you want to go back to how things were (or at least
close to it).

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 15:29 ` Austin Clements
  2012-02-13 15:44   ` David Edmondson
@ 2012-02-13 15:59   ` Dmitry Kurochkin
  2012-02-13 19:02   ` Daniel Schoepe
  2 siblings, 0 replies; 8+ messages in thread
From: Dmitry Kurochkin @ 2012-02-13 15:59 UTC (permalink / raw)
  To: Austin Clements; +Cc: notmuch

On Mon, 13 Feb 2012 10:29:26 -0500, Austin Clements <amdragon@MIT.EDU> wrote:
> Quoth Dmitry Kurochkin on Feb 13 at  3:09 pm:
> > The notmuch-show view refresh function (`notmuch-show-refresh-view',
> > bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> > allows to set this argument interactively by using "C-u =".
> 
> Why do we not *always* want this?

Good point!  I would like to switch the default behavior to retain
state.  Though I do not want to mix a trivial improvement (ability to
use "C-u =") with potentially dangerous discussion of changing the
default behavior :)

Regards,
  Dmitry

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 15:29 ` Austin Clements
  2012-02-13 15:44   ` David Edmondson
  2012-02-13 15:59   ` Dmitry Kurochkin
@ 2012-02-13 19:02   ` Daniel Schoepe
  2012-02-13 19:14     ` Tomi Ollila
  2 siblings, 1 reply; 8+ messages in thread
From: Daniel Schoepe @ 2012-02-13 19:02 UTC (permalink / raw)
  To: Austin Clements, Dmitry Kurochkin; +Cc: notmuch

[-- Attachment #1: Type: text/plain, Size: 651 bytes --]

On Mon, 13 Feb 2012 10:29:26 -0500, Austin Clements <amdragon@MIT.EDU> wrote:
> Quoth Dmitry Kurochkin on Feb 13 at  3:09 pm:
> > The notmuch-show view refresh function (`notmuch-show-refresh-view',
> > bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> > allows to set this argument interactively by using "C-u =".
> 
> Why do we not *always* want this?

Seconded. And I don't think making that the default along with an easy
way to get the old behavior is "too much" for one patch, even though
"put that in a separate commit!" is a fairly common sentiment here, and
not a bad one, most of the time.

Cheers,
Daniel

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 19:02   ` Daniel Schoepe
@ 2012-02-13 19:14     ` Tomi Ollila
  0 siblings, 0 replies; 8+ messages in thread
From: Tomi Ollila @ 2012-02-13 19:14 UTC (permalink / raw)
  To: Daniel Schoepe, Austin Clements, Dmitry Kurochkin; +Cc: notmuch

On Mon, 13 Feb 2012 20:02:03 +0100, Daniel Schoepe <daniel@schoepe.org> wrote:
> On Mon, 13 Feb 2012 10:29:26 -0500, Austin Clements <amdragon@MIT.EDU> wrote:
> > Quoth Dmitry Kurochkin on Feb 13 at  3:09 pm:
> > > The notmuch-show view refresh function (`notmuch-show-refresh-view',
> > > bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> > > allows to set this argument interactively by using "C-u =".
> > 
> > Why do we not *always* want this?
> 
> Seconded. And I don't think making that the default along with an easy
> way to get the old behavior is "too much" for one patch, even though
> "put that in a separate commit!" is a fairly common sentiment here, and
> not a bad one, most of the time.

I agree. If there is going to be 2 commits, first to change '=' retain
state and second to add previous behaviour by adding prefix argument handling.


> Cheers,
> Daniel

tomi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively
  2012-02-13 11:09 [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively Dmitry Kurochkin
  2012-02-13 11:30 ` Tomi Ollila
  2012-02-13 15:29 ` Austin Clements
@ 2012-02-15  3:49 ` David Bremner
  2 siblings, 0 replies; 8+ messages in thread
From: David Bremner @ 2012-02-15  3:49 UTC (permalink / raw)
  To: Dmitry Kurochkin, notmuch

On Mon, 13 Feb 2012 15:09:07 +0400, Dmitry Kurochkin <dmitry.kurochkin@gmail.com> wrote:
> The notmuch-show view refresh function (`notmuch-show-refresh-view',
> bound to "=") accepts an optional RETAIN-STATE argument.  The patch
> allows to set this argument interactively by using "C-u =".

pushed

d

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-02-15  3:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-13 11:09 [PATCH] emacs: allow to set RETAIN-STATE for `notmuch-show-refresh-view' interactively Dmitry Kurochkin
2012-02-13 11:30 ` Tomi Ollila
2012-02-13 15:29 ` Austin Clements
2012-02-13 15:44   ` David Edmondson
2012-02-13 15:59   ` Dmitry Kurochkin
2012-02-13 19:02   ` Daniel Schoepe
2012-02-13 19:14     ` Tomi Ollila
2012-02-15  3:49 ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

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 read-only IMAP folder(s) and NNTP newsgroup(s).