Gnus development mailing list
 help / color / mirror / Atom feed
* gnus-dired-mode keybinding
@ 2003-05-01  4:01 Vasily Korytov
  2003-05-01  7:08 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Vasily Korytov @ 2003-05-01  4:01 UTC (permalink / raw)


In XEmacs (dired package v1.12) C-c C-f is already a keybinding in
dired-mode-map:

,----
| C-c C-f runs `dired-do-find-marked-files'
| 
| `dired-do-find-marked-files' is an interactive compiled Lisp function
|   -- loaded from "dired"
| (dired-do-find-marked-files &optional ARG)
| 
| Documentation:
| find the marked (or next ARG) files into xemacs.
`----

gnus-dired-mode-map overrides it. Perhaps, we should change C-c C-f to
smth other.

-- 
       I accept RFC3156 and RFC2440-compatible encrypted mail.
PGP key fingerprint: 123A 7CCE 6E26 6233 0D87 E01A A0F8 3524 FCD8 1841




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

* Re: gnus-dired-mode keybinding
  2003-05-01  4:01 gnus-dired-mode keybinding Vasily Korytov
@ 2003-05-01  7:08 ` Lars Magne Ingebrigtsen
  2003-05-01  7:35   ` Vasily Korytov
  0 siblings, 1 reply; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2003-05-01  7:08 UTC (permalink / raw)


deskpot@despammed.com (Vasily Korytov) writes:

> gnus-dired-mode-map overrides it. Perhaps, we should change C-c C-f to
> smth other.

Which key binding would you suggest?

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

* Re: gnus-dired-mode keybinding
  2003-05-01  7:08 ` Lars Magne Ingebrigtsen
@ 2003-05-01  7:35   ` Vasily Korytov
  2003-05-01  7:52     ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Vasily Korytov @ 2003-05-01  7:35 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 400 bytes --]

On Thu, 01 May 2003 09:08:08 +0200, Lars Magne Ingebrigtsen wrote:

> deskpot@despammed.com (Vasily Korytov) writes:
>
>> gnus-dired-mode-map overrides it. Perhaps, we should change C-c C-f to
>> smth other.
>
> Which key binding would you suggest?

Hm. I think, C-c C-m would be nice (m stands for mailcap), but C-m is
RET IIRC. So, I think, C-c C-l will be better.

Patch is attached.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: source patch --]
[-- Type: text/x-patch, Size: 337 bytes --]

--- ../gnus/lisp/gnus-dired.el	Wed Feb 20 03:15:31 2002
+++ ./gnus-dired.el	Thu May  1 11:28:49 2003
@@ -59,7 +59,7 @@
 
   (gnus-define-keys gnus-dired-mode-map
     "\C-c\C-a" gnus-dired-attach
-    "\C-c\C-f" gnus-dired-find-file-mailcap
+    "\C-c\C-l" gnus-dired-find-file-mailcap
     "\C-cP" gnus-dired-print
     ))
 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: info patch --]
[-- Type: text/x-patch, Size: 512 bytes --]

--- gnus.texi~	Thu May  1 07:49:45 2003
+++ gnus.texi	Thu May  1 11:33:04 2003
@@ -24588,7 +24588,7 @@
 
 @code{gnus-dired-minor-mode} installs key bindings in dired buffers to send
 a file as an attachment (@kbd{C-c C-a}), open a file using the approriate
-mailcap entry (@kbd{C-c C-f}), and print a file using the mailcap entry
+mailcap entry (@kbd{C-c C-l}), and print a file using the mailcap entry
 (@kbd{C-c P}).  It is enabled with 
 @lisp
 (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.4: GNUS-NEWS patch --]
[-- Type: text/x-patch, Size: 506 bytes --]

--- GNUS-NEWS~	Thu May  1 07:49:18 2003
+++ GNUS-NEWS	Thu May  1 11:34:44 2003
@@ -28,7 +28,7 @@
 ** Dired integration
 `gnus-dired-minor-mode' installs key bindings in dired buffers to send
 a file as an attachment (`C-c C-a'), open a file using the approriate
-mailcap entry (`C-c C-f'), and print a file using the mailcap entry
+mailcap entry (`C-c C-l'), and print a file using the mailcap entry
 (`C-c P').  It is enabled with 
 
       (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)

[-- Attachment #1.5: Type: text/plain, Size: 230 bytes --]

BTW, what is the reason to use C-c P for gnus-dired-print? is C-c C-p
used in Emacs?

-- 
       I accept RFC3156 and RFC2440-compatible encrypted mail.
PGP key fingerprint: 123A 7CCE 6E26 6233 0D87 E01A A0F8 3524 FCD8 1841

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

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

* Re: gnus-dired-mode keybinding
  2003-05-01  7:35   ` Vasily Korytov
@ 2003-05-01  7:52     ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2003-05-01  7:52 UTC (permalink / raw)


deskpot@despammed.com (Vasily Korytov) writes:

> Hm. I think, C-c C-m would be nice (m stands for mailcap), but C-m is
> RET IIRC. So, I think, C-c C-l will be better.

Thanks for the patch; I've applied it to Oort Gnus v0.20 (i. e., CVS).

> BTW, what is the reason to use C-c P for gnus-dired-print? is C-c C-p
> used in Emacs?

Hm...  I don't know...

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

end of thread, other threads:[~2003-05-01  7:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-01  4:01 gnus-dired-mode keybinding Vasily Korytov
2003-05-01  7:08 ` Lars Magne Ingebrigtsen
2003-05-01  7:35   ` Vasily Korytov
2003-05-01  7:52     ` Lars Magne Ingebrigtsen

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).