unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [patch] add 'q' key binding to diff
@ 2004-01-23  0:46 Benjamin Rutt
  2004-02-02 14:27 ` Benjamin Rutt
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Rutt @ 2004-01-23  0:46 UTC (permalink / raw)


I was inspired to make this tiny change when I began seriously using
the recent changes to VC annotate mode that enable browsing etc.  It's
nice to press "D" or "L" on a vc annotate line, and get the diff or
log message.  What isn't nice is the inconsistent ways you need to use
to quit the respective buffer and navigate back to the VC annotate
buffer you launched the diff or log view from:  for "L", you press "q"
to quit the buffer, but for "D", you have to do C-x k.  This patch
makes "q" do the same thing in diff-mode as it does when looking at a
cvs log, and is consistent with some other areas of emacs (browsing
info, for example, where "q" quits the buffer).  Also, "q" is
currently unused in diff-mode.  Let me know if this can be accepted.
Thanks,

Benjamin Rutt

Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.5619
diff -c -r1.5619 ChangeLog
*** ChangeLog	22 Jan 2004 23:37:46 -0000	1.5619
--- ChangeLog	23 Jan 2004 00:18:36 -0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2004-01-22  Benjamin Rutt  <brutt@bloomington.in.us>
+ 
+         * diff-mode.el (diff-mode-shared-map): Add 'q' key binding as a
+         another way to quit the buffer.
+ 
  2004-01-23  Andre Spiegel  <spiegel@gnu.org>
  
  	* vc.el (vc-current-line): Function removed.  This is now done by
Index: diff-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/diff-mode.el,v
retrieving revision 1.53
diff -c -r1.53 diff-mode.el
*** diff-mode.el	14 Nov 2003 16:22:36 -0000	1.53
--- diff-mode.el	23 Jan 2004 00:18:36 -0000
***************
*** 127,133 ****
      ("r" . diff-restrict-view)
      ("R" . diff-reverse-direction)
      ("U" . diff-context->unified)
!     ("C" . diff-unified->context))
    "Basic keymap for `diff-mode', bound to various prefix keys.")
  
  (easy-mmode-defmap diff-mode-map
--- 127,134 ----
      ("r" . diff-restrict-view)
      ("R" . diff-reverse-direction)
      ("U" . diff-context->unified)
!     ("C" . diff-unified->context)
!     ("q" . quit-window))
    "Basic keymap for `diff-mode', bound to various prefix keys.")
  
  (easy-mmode-defmap diff-mode-map

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

* Re: [patch] add 'q' key binding to diff
  2004-01-23  0:46 [patch] add 'q' key binding to diff Benjamin Rutt
@ 2004-02-02 14:27 ` Benjamin Rutt
  2004-02-02 21:24   ` Benjamin Rutt
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Rutt @ 2004-02-02 14:27 UTC (permalink / raw)


Benjamin Rutt <brutt+news@bloomington.in.us> writes:

> I was inspired to make this tiny change when I began seriously using
> the recent changes to VC annotate mode that enable browsing etc.  It's
> nice to press "D" or "L" on a vc annotate line, and get the diff or
> log message.  What isn't nice is the inconsistent ways you need to use
> to quit the respective buffer and navigate back to the VC annotate
> buffer you launched the diff or log view from:  for "L", you press "q"
> to quit the buffer, but for "D", you have to do C-x k.  This patch
> makes "q" do the same thing in diff-mode as it does when looking at a
> cvs log, and is consistent with some other areas of emacs (browsing
> info, for example, where "q" quits the buffer).  Also, "q" is
> currently unused in diff-mode.  Let me know if this can be accepted.

Can someone reject or accept this so I don't have to keep waiting for
an answer?  :)  Thanks,

Benjamin Rutt

> Index: ChangeLog
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
> retrieving revision 1.5619
> diff -c -r1.5619 ChangeLog
> *** ChangeLog	22 Jan 2004 23:37:46 -0000	1.5619
> --- ChangeLog	23 Jan 2004 00:18:36 -0000
> ***************
> *** 1,3 ****
> --- 1,8 ----
> + 2004-01-22  Benjamin Rutt  <brutt@bloomington.in.us>
> + 
> +         * diff-mode.el (diff-mode-shared-map): Add 'q' key binding as a
> +         another way to quit the buffer.
> + 
>   2004-01-23  Andre Spiegel  <spiegel@gnu.org>
>   
>   	* vc.el (vc-current-line): Function removed.  This is now done by
> Index: diff-mode.el
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/lisp/diff-mode.el,v
> retrieving revision 1.53
> diff -c -r1.53 diff-mode.el
> *** diff-mode.el	14 Nov 2003 16:22:36 -0000	1.53
> --- diff-mode.el	23 Jan 2004 00:18:36 -0000
> ***************
> *** 127,133 ****
>       ("r" . diff-restrict-view)
>       ("R" . diff-reverse-direction)
>       ("U" . diff-context->unified)
> !     ("C" . diff-unified->context))
>     "Basic keymap for `diff-mode', bound to various prefix keys.")
>   
>   (easy-mmode-defmap diff-mode-map
> --- 127,134 ----
>       ("r" . diff-restrict-view)
>       ("R" . diff-reverse-direction)
>       ("U" . diff-context->unified)
> !     ("C" . diff-unified->context)
> !     ("q" . quit-window))
>     "Basic keymap for `diff-mode', bound to various prefix keys.")
>   
>   (easy-mmode-defmap diff-mode-map

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

* Re: [patch] add 'q' key binding to diff
  2004-02-02 14:27 ` Benjamin Rutt
@ 2004-02-02 21:24   ` Benjamin Rutt
  2004-02-03  8:27     ` Kai Grossjohann
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Rutt @ 2004-02-02 21:24 UTC (permalink / raw)


Benjamin Rutt <brutt+news@bloomington.in.us> writes:

> Can someone reject or accept this so I don't have to keep waiting for
> an answer?

I've now committed this, 'q' quits inside diff-mode.
-- 
Benjamin

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

* Re: [patch] add 'q' key binding to diff
  2004-02-02 21:24   ` Benjamin Rutt
@ 2004-02-03  8:27     ` Kai Grossjohann
  0 siblings, 0 replies; 4+ messages in thread
From: Kai Grossjohann @ 2004-02-03  8:27 UTC (permalink / raw)


Benjamin Rutt <brutt+news@bloomington.in.us> writes:

> Benjamin Rutt <brutt+news@bloomington.in.us> writes:
>
>> Can someone reject or accept this so I don't have to keep waiting for
>> an answer?
>
> I've now committed this, 'q' quits inside diff-mode.

Thanks.

Kai

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

end of thread, other threads:[~2004-02-03  8:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-23  0:46 [patch] add 'q' key binding to diff Benjamin Rutt
2004-02-02 14:27 ` Benjamin Rutt
2004-02-02 21:24   ` Benjamin Rutt
2004-02-03  8:27     ` Kai Grossjohann

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

	https://git.savannah.gnu.org/cgit/emacs.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).