osdir.com
mailing list archive F.A.Q. -since 2001!



Subject: Re: mutt: compose message in new window [was: Re:
Musings on debian-user list] - msg#00056

List: debian-user-debian

Mail Archive Navigation:
by Date: Prev Next Date Index by Thread: Prev Next Thread Index

On Sat,01.Aug.09, 16:06:08, Chris Jones wrote:

> > http://does-not-exist.org/mail-archives/mutt-users/msg14344.html
>
> The mutt-user archive seems to be broken - if you display this message
> and try to display the thread index, it does display an index but there
> is no trace of this particular thread, which makes the ensuing
> discussion difficult to follow..

You can use the "Next by thread" link.

> So, I'm not sure I understand the solution & how it improves on:
>
> â :sh while composing in vim
> â start new instance of mutt
> â do what you have to do - e.g. copy parts of messages
> â 'q'+'Ctrl-D' to return to composing

The proposed solution involves the script[1]:

,----[ external-reply.sh ]
| #!/bin/sh
| DRAFT="$1"
| cp "$DRAFT" "$DRAFT.tmp"
| (
| xterm -e "exec mutt -H \"$DRAFT.tmp\""
| sleep 1
| rm -f "$DRAFT.tmp"
| ) &
|
| exit 0
`----

which you set as your editor (set editor="external-reply.sh"). Now
whenever you compose a message it opens in a new xterm and you can use
the first mutt to do whatever you want.

The only trouble with it is that the second mutt prompts for "To:" and
"Subject:". There's a hint in the thread about using a macro to work
around it, but I don't have any idea where to start.

[1] In order to debianize "xterm -e" should be replaced with
"x-terminal-emulator -e sh -c".

Regards,
Andrei
--
If you can't explain it simply, you don't understand it well enough.
(Albert Einstein)

Attachment: signature.asc
Description: Digital signature

Thread at a glance:

Previous Message by Date:

kdebluetooth4 in Debian squeeze

Hi! Is there anybody with working kdebluetooth4 on Debian squeeze? I tried to build from kdebluetooth4-0.3 release tarball from http://kde-apps.org/content/show.php/kdebluetooth4?content=84761but had build errors. Then I tryed to download from svn. That needs libknotificationitem-1, so I installed it from experimental. But after all there were other build errors due to significant code change in packages. Does anybody knows specific package versions or something else to make it work? My package versions: kdebluetooth4 from svn 1 august 2009 libknotificationitem-1-1 4:4.2.95-svn99103 kdebase-workspace-dev 4:4.2.4-1+b1 Thanks -- To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx

Next Message by Date:

radeon tv-out (RV505)

hello, i tried to get the tv-out working for my radeon X1550 64-bit graphics controller, but so far i failed. xrandr lists the S-video output and even detects it as connected when X is started with the option ATOMTVOut set to true for the radeon video driver. but i don't see anything on the tv screen. when i try to set the mode for S-video with 'xrandr --output S-video --mode 800x600', nothing happens on the tv screen (still no image at all), but instead the main computer screen gets screwed up. everything looks blurred or smudged, i don't know how to describe it in english. so i wonder if anyone got the tv-out working with a radeon RV505 chip and the free radeon video driver. my system is up-to-date debian/unstable amd64. greetings, jonas -- To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx

Previous Message by Thread:

Re: mutt: compose message in new window [was: Re: Musings on debian-user list]

On Sat, Aug 01, 2009 at 04:39:10AM EDT, Andrei Popescu wrote: > On Wed,29.Jul.09, 18:47:55, Chris Jones wrote: > > > The only thing I find "frustrating" about mutt is that it is impossible > > to view more than one message at a time - you actually have to fire up a > > second instance of mutt to achieve this. > > The only time I *really* needed this is at compose time. Sorry for being sloppy, that's what I meant. > I searched the web for a solution and the only thing that comes close > is the solution in this thread > > http://does-not-exist.org/mail-archives/mutt-users/msg14344.html The mutt-user archive seems to be broken - if you display this message and try to display the thread index, it does display an index but there is no trace of this particular thread, which makes the ensuing discussion difficult to follow.. So, I'm not sure I understand the solution & how it improves on: â :sh while composing in vim â start new instance of mutt â do what you have to do - e.g. copy parts of messages â 'q'+'Ctrl-D' to return to composing [..] CJ -- To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx

Next Message by Thread:

Re: mutt: compose message in new window [was: Re: Musings on debian-user list]

On Sat, Aug 01, 2009 at 06:13:31PM EDT, Andrei Popescu wrote: > On Sat,01.Aug.09, 16:06:08, Chris Jones wrote: > > > > http://does-not-exist.org/mail-archives/mutt-users/msg14344.html > > > > The mutt-user archive seems to be broken - if you display this message > > and try to display the thread index, it does display an index but there > > is no trace of this particular thread, which makes the ensuing > > discussion difficult to follow.. > > You can use the "Next by thread" link. What I did.. but you don't know who posted what.. and when you have to go through 4-5 useless posts before you get to the one that has useful content.. But I was just being sarcastic at the mutt folks of all people not being able to manage their mailing list's archives correctly :-) > > So, I'm not sure I understand the solution & how it improves on: > > > > â :sh while composing in vim > > â start new instance of mutt > > â do what you have to do - e.g. copy parts of messages > > â 'q'+'Ctrl-D' to return to composing > > The proposed solution involves the script[1]: > > ,----[ external-reply.sh ] > | #!/bin/sh > | DRAFT="$1" > | cp "$DRAFT" "$DRAFT.tmp" > | ( > | xterm -e "exec mutt -H \"$DRAFT.tmp\"" > | sleep 1 > | rm -f "$DRAFT.tmp" > | ) & > | > | exit 0 > `---- > > which you set as your editor (set editor="external-reply.sh"). Now > whenever you compose a message it opens in a new xterm and you can use > the first mutt to do whatever you want. Thanks for clarifying..! I got this to work for me under gnu screen - I only needed to replace the xterm invocation by: screen -X screen mutt -H "$DRAFT.tmp" and mutt+vim is launched in a newly created screen "window". I was then able to split the screen and cause the original mutt session to inhabit the new window. I haven't looked into it, but I'm confident I could cause screen to split the screen automatically and present you with both instances of mutt - the original one and the one that's launching the editor. Thus fairly transparently emulating the missing feature. > The only trouble with it is that the second mutt prompts for "To:" and > "Subject:". There's a hint in the thread about using a macro to work > around it, but I don't have any idea where to start. In my setup, I am requested to confirm the "To:" with the correct value already filled in .. so I only need to hit enter.. and then I'm prompted for "Cc:" .. with nothing filled in.. and since I'm not Cc'ing anybody I hit enter again. But I am not prompted for the "Subject:" field. So, in my case, it's just a matter of hitting <enter> twice. There should be a way to cause mutt to send those two enter's automatically.. but I don't know how. Also, I noticed that if I postpone a message, and retrieve it later.. I am asked for the exact same fields.. so the differing behaviors must have something to do with our different setups. Your best bet if you can't figure it out would be to post to the mutt list (mutt-user, I believe) since there are few mutt experts out there who would (1) flame you for not reading the famous manual, and (2) not resist the temptation to demonstrate that _they_ have read it many times and provide you with a solution. Thanks again for taking the trouble to explain. CJ -- To UNSUBSCRIBE, email to debian-user-REQUEST@xxxxxxxxxxxxxxxx with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx
blog comments powered by Disqus

Home | News | Sitemap | FAQ | advertise | OSDir is an Inevitable website. GBiz is too!