On Thu, Jan 27, 2011 at 01:52:56PM -0500, Haines Brown KB1GRM wrote:
Yes, but you probably need to remap or undef the 'stop' terminal control key (^S) prior to invoking mutt:$ stty stop undef $ mutt Then you can bind ^S bind index,pager \cs save-messageBut won't stty stop undef interfere with other applications using the s key?
It will affect your ability to stop terminal output with other applications, yes.
In any case, I don't start mutt by raising a terminal, but with a string in .fluxbox/keys, which allows me to bring in urxvt's configuration: Control Mod1 m :ExecCommand urxvt -e mutt & I'm unclear how to incorporate the "stty stop undef" in that string. Would you kindly advise?
You can either create a simple shell script and invoke that, or do something like this:
Control Mod1 m :ExecCommand urxvt -e 'stty stop undef && mutt' & me
