>>>>> 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,
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to