Sebastian Kaps <[EMAIL PROTECTED]> writes:

Hi Sebastian,

> I want to reassign the 'q' key in Group buffer so that it doesn't quit
> gnus and use some other key combination instead. Unfortunately there
> doesn't seem to be something like a gnus-group-mode-map, so where do I
> define key bindings for the Group buffer?

Huh?

,----[ C-h v gnus-group-mode-map RET ]
| gnus-group-mode-map is a variable defined in `gnus.el'.
| Its value is shown below.
| 
| Documentation:
| Not documented as a variable.
| 
| Value: 
| (keymap
|  #^[t nil nil nil nil

[...]

| [back]
`----

Or use something like

(add-hook 'gnus-group-mode-hook
          (lambda ()
            (local-set-key (kbd "q") 'some-command)
            (local-set-key (kbd "C-c q") 'gnus-group-exit)))

Bye,
Tassilo



_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to