Re: Patch for square copy.

2010-01-20 Thread Nicholas Marriott
Hi Thanks for your mail and diff, On Tue, Jan 19, 2010 at 07:14:51PM -0800, Robin Lee Powell wrote: > > Find attached; this is basically the c and C keys from GNU Screen's > copy mode, plus a block mode toggle. Now, the J key. :) I've converted your diff to a unified diff below since it is mu

Re: mutt with tmux

2010-01-20 Thread Michel Le Cocq
thanks I just made an alias : 'tmux -u' -> tmux Nicholas Marriott a écrit: > You didn't enable UTF-8 fully, look at the FAQ. You need to tell tmux the > terminal supports UTF-8 either by setting LANG or using tmux -u when you > attach. > > > On Tue, Jan 19, 2010 at 01:53:07PM +0100, Michel Le Co

launch tmux with several window and command

2010-01-20 Thread Michel Le Cocq
With my old screen I had an alias : smail wich launch screen with a special .screenrc like this : screen -t boiteA mutt -F $HOME/.mutt/config/.muttrc_A screen -t boiteB mutt -F $HOME/.mutt/config/.muttrc_B screen -t BoiteC mutt -F $HOME/.mutt/config/.muttrc_C screen -t sync offlineimap How can I

Re: launch tmux with several window and command

2010-01-20 Thread Thomas Adam
On Wed, Jan 20, 2010 at 11:39:40PM +0100, Michel Le Cocq wrote: > With my old screen I had an alias : > smail wich launch screen with a special .screenrc like this : > > screen -t boiteA mutt -F $HOME/.mutt/config/.muttrc_A > screen -t boiteB mutt -F $HOME/.mutt/config/.muttrc_B > screen -t BoiteC

Re: launch tmux with several window and command

2010-01-20 Thread Robin Lee Powell
On Wed, Jan 20, 2010 at 11:39:40PM +0100, Michel Le Cocq wrote: > With my old screen I had an alias : smail wich launch screen with > a special .screenrc like this : > > screen -t boiteA mutt -F $HOME/.mutt/config/.muttrc_A > screen -t boiteB mutt -F $HOME/.mutt/config/.muttrc_B > screen -t BoiteC

Re: launch tmux with several window and command

2010-01-20 Thread Nicholas Marriott
You can also do it from the command line: tmux new -d\; neww 'exec foo2'\; neww 'exec foo3'\; attach Although in this case would probably want something like: smail() { tmux attach -tmail 2>/dev/null || \ tmux new -dsmail\; neww 'exec mutt blah'\; neww 'exec foo3'\; attach } On

Re: launch tmux with several window and command

2010-01-20 Thread Nicholas Marriott
On Wed, Jan 20, 2010 at 03:06:45PM -0800, Robin Lee Powell wrote: > On Wed, Jan 20, 2010 at 11:39:40PM +0100, Michel Le Cocq wrote: > > With my old screen I had an alias : smail wich launch screen with > > a special .screenrc like this : > > > > screen -t boiteA mutt -F $HOME/.mutt/config/.muttrc_

Re: Patch for square copy.

2010-01-20 Thread Robin Lee Powell
On Wed, Jan 20, 2010 at 07:04:21PM +, Nicholas Marriott wrote: > > + { MODEKEYCOPY_MARGIN_LEFT, "left-margin" }, > > + { MODEKEYCOPY_MARGIN_RIGHT, "right-margin" }, > > + { MODEKEYCOPY_MARGIN_TOGGLE, "square-copy-toggle" }, > > Not critical but can you sort these? Done. > > screen_set