info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Just 2 more questions ;)


From: Katsumi Yamaoka
Subject: Re: Just 2 more questions ;)
Date: Wed, 29 Oct 2008 08:05:48 +0900
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux)

>>>>> Francis Moreau wrote:

> When sending an article by using "C-c C-c", gnus keeps around a buffer
> named "*sent mail to XXXX" corresponding to the article I just sent.

(setq message-kill-buffer-on-exit t)

Documentation:
*Non-nil means that the message buffer will be killed after sending a message.

> I'd like Gnus to not keep this buffer but close it, is it possible ?

> I also want to use M-RET binding when looking at an article to run
> gnus-summary-scroll-down function. So I press <ALT> key and <ENTER>,
> but it doesn't work. Instead when asking for the binding description,
> emacs tells me:

>             C-M-j runs the command indent-new-comment-line

Maybe you run Emacs on a terminal emulator like gnome-terminal.

> Could anybody tell me why I get this behaviour ?

I don't know how to change the code that the M-RET key provides.
Instead you can use the `ESC RET' key or you can bind the `C-M-j'
key to `gnus-summary-scroll-down' in the ~/.gnus.el file as follows:

(if window-system
    nil
  (eval-after-load "gnus-sum"
    '(define-key gnus-summary-mode-map "\C-\M-j" 'gnus-summary-scroll-down)))

Regards,


reply via email to

[Prev in Thread] Current Thread [Next in Thread]