Re: Unusual archiving behavior.

2011-01-04 Thread Philipp Haselwarter
Where do you set your Gcc: ? In your .gnus.el, by any chance?
Maybe something like this could help:

--8<---cut here---start->8---
(eval-after-load "message" '(require 'gnus))
(eval-after-load "message" '(load-file "~/.gnus.el"))
--8<---cut here---end--->8---


-- 
Philipp Haselwarter


___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Any way to click article buttons without leaving the summary buffer?

2011-01-04 Thread Peter Münster
Lars Magne Ingebrigtsen  writes:

>> Idea #2: Add a command that highlights successive links on repeated
>> invocation, and another command that activates the currently highlighted
>> link.
>
> Sounds nice.  Perhaps TAB in the summary buffer should highlight the
> links successively?  And then RET could "click the link".

Seems to be not so difficult:

--8<---cut here---start->8---
(defun my-alter-summary-map ()
  (local-set-key [tab] '(lambda () (interactive)
  (gnus-summary-select-article-buffer)
  (w3m-next-anchor)
  (w3m-highlight-current-anchor)
  (gnus-article-show-summary)))
  (local-set-key [C-return] [?h return ?h]))

(add-hook 'gnus-summary-mode-hook 'my-alter-summary-map)
--8<---cut here---end--->8---

Only the w3m-highlight-current-anchor does not work as expected... :(

Cheers, Peter

-- 
Contact information: http://pmrb.free.fr/contact/
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Any way to click article buttons without leaving the summary buffer?

2011-01-04 Thread Dan Christensen
Lars Magne Ingebrigtsen  writes:

> Sean McAfee  writes:
>
>> Idea #2: Add a command that highlights successive links on repeated
>> invocation, and another command that activates the currently highlighted
>> link.
>
> Sounds nice.  Perhaps TAB in the summary buffer should highlight the
> links successively?  And then RET could "click the link".

Isn't that essentially what TAB already does?  (But not just for links;
it includes any widget; which I think is the right thing to do.)

|  runs the command gnus-summary-widget-forward, which is an
| interactive compiled Lisp function in `gnus-sum.el'.
| 
| It is bound to , A .
| 
| (gnus-summary-widget-forward arg)
| 
| Move point to the next field or button in the article.
| With optional arg, move across that many fields.

Dan


___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: my vs maildir

2011-01-04 Thread Adam Sjøgren
On Tue, 04 Jan 2011 00:57:59 +0100, Richard wrote:

> Why not just call it "development Gnus" or something?

That sounds quite work-ey?


  :-),

   Adam

-- 
 "Accept the mystery!"Adam Sjøgren
 a...@koldfront.dk
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Any way to click article buttons without leaving the summary buffer?

2011-01-04 Thread Peter Münster
pmli...@free.fr (Peter Münster) writes:

> I'm just working on my-alter-summary-map and my-alter-article-map to get
> this behaviour.

Here some ideas:

--8<---cut here---start->8---
(defun my-alter-group-map ()
  (local-set-key [right] 'gnus-group-select-group))

(defun my-alter-summary-map ()
  (local-set-key [left] 'gnus-summary-exit)
  (local-set-key [right] '(lambda () (interactive)
(gnus-summary-show-article)
(gnus-summary-select-article-buffer)
(delete-other-windows)))
  (local-set-key "s" '(lambda () (interactive)
(gnus-summary-move-article)
(next-line)))
  (local-set-key "d" [?M ?M ?e ?e down]))

(defun my-alter-article-map ()
  (local-set-key [left] '(lambda () (interactive)
   (gnus-article-show-summary)
   (delete-other-windows)))
  (local-set-key "s" '(lambda () (interactive)
(gnus-summary-move-article)
(gnus-summary-next-unread-article)
(gnus-summary-show-article)
(gnus-summary-select-article-buffer)
(delete-other-windows)))
  (local-set-key "d" "MMeeN"))

(add-hook 'gnus-group-mode-hook 'my-alter-group-map)
(add-hook 'gnus-summary-mode-hook 'my-alter-summary-map)
(add-hook 'gnus-article-mode-hook 'my-alter-article-map)
--8<---cut here---end--->8---

(delete-other-window) is just personal taste.
s: save message
d: delete message

When you read your messages without leaving the article buffer (using
"n", "space" and so on), you can immediatly jump to the URLs with TAB.

Cheers, Peter

-- 
Contact information: http://pmrb.free.fr/contact/
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english