all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Richard Riley <rileyrgdev@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Moving from Thunderbird to Emacs for mail and calendar
Date: Fri, 16 Oct 2009 16:26:38 +0200	[thread overview]
Message-ID: <hb9vr0$1jg$1@news.eternal-september.org> (raw)
In-Reply-To: 3d6bce8c-82aa-42ca-bc9a-0a641a7a31d7@k17g2000yqb.googlegroups.com

Francis Moreau <francis.moro@gmail.com> writes:

> On 13 oct, 15:58, Richard Riley <rileyrg...@gmail.com> wrote:
>> Jeff Clough <j...@chaosphere.com> writes:
>> > From: Andreas Politz <poli...@fh-trier.de>
>> > Date: Mon, 12 Oct 2009 19:12:36 +0200
>>
>> >> Francis Moreau <francis.m...@gmail.com> writes:
>>
>> >>> On Oct 12, 2:56 pm, Richard Riley <rileyrg...@gmail.com> wrote:
>> >>>> I think it is worth it because of the benefits of it being cradled by
>> >>>> mother Emacs : having all my normal text tools for translation,
>> >>>> spelling, searching etc in my gnus buffers is just too cool. It all
>> >>>> works together too well. I do remember being frustrated earlier because
>> >>>> of the incomprehensible manual and the raft of options (and being newish
>> >>>> to emacs). But it was worth it.
>>
>> >>> But you probably get the same benefits with Mew...
>>
>> > Every Emacs feature I've wanted and tried to use works very well with
>> > Mew, or at least no worse than to be expected under Windows.
>>
>> >> So what is your experience with Mew concerning ease of setup, huge mail
>> >> boxes, message threading and general performance ?
>>
>> > Setting up Mew was several orders of magnitude easier than setting up
>> > Gnus, which I was never able to successfully do.  A good part of this
>>
>> What part were you unable to do? Did you have it reading mail at all?
>>
>
> BTW, one thing is really annoying with gnus is that it screw all my
> current window configuration (window layout) when I start composing a
> new article/mail.
>
> I did (setq gnus-use-full-window nil) but gnus always use a full
> window when writing a new mail.
>
> Do you  have/know any setup which could fix this behaviour ?
>
> thanks

I do my gnus stuff on a separate "elscreen" so, no, I can't really help
with that.

,----
| (require 'elscreen) ;; C-z n for new screen or next etc.
| (require 'elscreen-gf) ;; C-z n for new screen or next etc.
| 
| (defmacro elscreen-create-automatically (ad-do-it)
|   `(if (not (elscreen-one-screen-p))
|        ,ad-do-it
|      (elscreen-create)
|      (elscreen-notify-screen-modification 'force-immediately)
|      (elscreen-message "New screen is automatically created")))
| 
| (defadvice elscreen-jump (before elscreen-jump-create activate)
|   (let ((next-screen (string-to-number (string last-command-event))))
|     (when (and (<= 0 next-screen)
| 	       (<= next-screen 9)
| 	       (not (elscreen-screen-live-p next-screen)))
|       (elscreen-set-window-configuration
|        (elscreen-get-current-screen)
|        (elscreen-current-window-configuration))
|       (elscreen-set-window-configuration
|        next-screen (elscreen-default-window-configuration))
|       (elscreen-append-screen-to-history next-screen)
|       (elscreen-notify-screen-modification 'force))))
| 
| (defadvice elscreen-next (around elscreen-create-automatically activate)
|   (elscreen-create-automatically ad-do-it))
| 
| (defadvice elscreen-previous (around elscreen-create-automatically activate)
|   (elscreen-create-automatically ad-do-it))
| 
| (defadvice elscreen-toggle (around elscreen-create-automatically activate)
|   (elscreen-create-automatically ad-do-it))
| 
| (provide 'rgr-elscreen)
`----

You might also consider winner-mode I think it is.



  reply	other threads:[~2009-10-16 14:26 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-08 23:33 Moving from Thunderbird to Emacs for mail and calendar Jeff Clough
2009-09-09  2:55 ` Bastien
2009-09-09  9:45   ` Tassilo Horn
     [not found]   ` <mailman.6296.1252489560.2239.help-gnu-emacs@gnu.org>
2009-09-09 10:08     ` Torsten Mueller
2009-09-09 12:00       ` Andreas Politz
     [not found]       ` <mailman.6303.1252497724.2239.help-gnu-emacs@gnu.org>
2009-09-09 12:40         ` Torsten Mueller
2009-09-09 15:39           ` Andreas Politz
     [not found] ` <4AA7B21C.4000008@chaosphere.com>
2009-09-09 14:35   ` Bastien
2009-09-09 15:28     ` Jeff Clough
2009-09-09 22:25       ` Bastien
2009-09-09 17:55   ` Jeff Clough
     [not found] ` <mailman.6308.1252506039.2239.help-gnu-emacs@gnu.org>
2009-09-09 14:35   ` Richard Riley
2009-09-09 15:48     ` Jeff Clough
     [not found]     ` <mailman.6321.1252511354.2239.help-gnu-emacs@gnu.org>
2009-09-10  5:17       ` Jason Rumney
2009-09-10  5:12   ` Jason Rumney
     [not found] ` <mailman.6268.1252464957.2239.help-gnu-emacs@gnu.org>
2009-09-09  3:12   ` notbob
2009-09-09  7:18     ` Sébastien Vauban
2009-09-09  8:27       ` ken
2009-09-09 10:06         ` Andreas Politz
     [not found]       ` <mailman.6288.1252484861.2239.help-gnu-emacs@gnu.org>
2009-09-09  9:59         ` Sébastien Vauban
2009-09-09 23:31           ` ken
     [not found]           ` <mailman.6339.1252539077.2239.help-gnu-emacs@gnu.org>
2009-09-09 23:59             ` Richard Riley
2009-10-12 12:06   ` Francis Moreau
2009-10-12 12:47     ` Jeff Clough
     [not found]     ` <mailman.8593.1255351673.2239.help-gnu-emacs@gnu.org>
2009-10-12 12:56       ` Richard Riley
2009-10-12 13:40         ` Francis Moreau
2009-10-12 16:51           ` Richard Riley
2009-10-12 17:12           ` Andreas Politz
2009-10-13 13:29             ` Jeff Clough
     [not found]             ` <mailman.8683.1255440588.2239.help-gnu-emacs@gnu.org>
2009-10-13 13:58               ` Richard Riley
2009-10-13 15:33                 ` Jeff Clough
     [not found]                 ` <mailman.8686.1255448028.2239.help-gnu-emacs@gnu.org>
2009-10-13 16:20                   ` Richard Riley
2009-10-13 17:13                     ` Jeff Clough
2009-10-13 17:51                       ` Memnon Anon
2009-10-13 18:17                       ` Matt Lundin
     [not found]                     ` <mailman.8690.1255454017.2239.help-gnu-emacs@gnu.org>
2009-10-13 17:32                       ` rustom
2009-10-13 17:40                         ` Richard Riley
2009-10-13 17:35                       ` Richard Riley
2009-10-13 19:31                   ` Ted Zlatanov
2009-10-15 19:59                 ` Francis Moreau
2009-10-16 14:26                   ` Richard Riley [this message]
2009-10-16 19:23                     ` Francis Moreau
     [not found] <mailman.6252.1252454441.2239.help-gnu-emacs@gnu.org>
2009-09-13  1:06 ` Dave Täht
2009-10-12  2:11   ` Anyone gone from mutt to Emacs? was: " David Combs
2009-10-25 13:12     ` Dave Täht
2009-10-27 12:03   ` Francis Moreau

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='hb9vr0$1jg$1@news.eternal-september.org' \
    --to=rileyrgdev@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.