summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-03-10This commit was manufactured by cvs2svn to create tag 'TMUX_1_2'.1.2no_author
2010-03-10Done.Tiago Cunha
2010-03-10Update CHANGES, and NOTES for the 1.2 release.Tiago Cunha
2010-03-10Bump VERSION.Tiago Cunha
2010-03-10Prepare the tree for the 1.2 release.Tiago Cunha
2010-03-10Plug memory leak, from Gregory Thiemonge.Nicholas Marriott
2010-03-08Sync OpenBSD patchset 658:Tiago Cunha
Permit keys in copy mode to be prefixed by a repeat count, entered with [1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me.
2010-03-08Sync OpenBSD patchset 657:Tiago Cunha
Extend the end-of-line key so that in normal mode a second press moves the cursor to the end of a wrapped line (if present) and in rectangle mode it toggles between the end of the text and the last cell on the line. From Micah Cowan.
2010-03-08Sync OpenBSD patchset 656:Tiago Cunha
Check for colour and attribute modifications early so the translated values can be stored in the cached terminal attributes rather than the requested (untranslated) values. Prevents tmux clearing and setting the attributes for every character when using aixterm colours.
2010-03-06+.Nicholas Marriott
2010-03-01+.Nicholas Marriott
2010-03-01Some done, some tidying, some added.Nicholas Marriott
2010-03-01+ and -.Nicholas Marriott
2010-02-26Sync OpenBSD patchset 655:Tiago Cunha
Typo fix from Tim van der Molen.
2010-02-26Sync OpenBSD patchset 654:Tiago Cunha
Don't set the terminal to nonblocking on detach until we have finished with it entirely.
2010-02-26Update.Tiago Cunha
2010-02-26Sync OpenBSD patchset 653:Tiago Cunha
Option to set the characters considered word separators in copy mode, from Micah Cowan.
2010-02-26Sync OpenBSD patchset 652:Tiago Cunha
In load-buffer, read until EOF rather than using stat() and reading a fixed size. Allows use of FIFOs and whatnot. From Tiago Cunha, idea from Fulvio Ciriaco.
2010-02-26Sync OpenBSD patchset 651:Tiago Cunha
Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursor should not wrap at the end of the text on the line but should be allowed to move freely.
2010-02-26Sync OpenBSD patchset 650:Tiago Cunha
Display -t argument to new-session, from Tiago Cunha.
2010-02-26Sync OpenBSD patchset 649:Tiago Cunha
have_arg matches buf so it is no longer necessary, spotted by Tim van der Molen.
2010-02-26Sync OpenBSD patchset 648:Tiago Cunha
copy mode uses the real screen as backing and if it is updated while copying, strange things can happen. So, freeze reading from the pty while in copy mode.
2010-02-24+.Nicholas Marriott
2010-02-24+Nicholas Marriott
2010-02-18Sync OpenBSD patchset 647:Tiago Cunha
Make next-word stop at beginning of word even if it is at the start of the line, from Micah Cowan.
2010-02-18Sync OpenBSD patchset 646:Tiago Cunha
Man page additions/improvements, thanks to Robin Lee Powell.
2010-02-18Sync OpenBSD patchset 645:Tiago Cunha
Don't strip add newline if only copying part of wrapped line. Problem spotted by and fix from Micah Cowan.
2010-02-18Sync OpenBSD patchset 644:Tiago Cunha
Add "N" key to search the opposite way from the last search (reverse of "n"), from Micah Cowan.
2010-02-18Sync OpenBSD patchset 643:Tiago Cunha
Clarify default status-right, from Seth Wright.
2010-02-17+.Nicholas Marriott
2010-02-11+.Nicholas Marriott
2010-02-08Update.Tiago Cunha
2010-02-08Sync OpenBSD patchset 642:Tiago Cunha
Add an option to disable the smcup/rmcup alternate screen behaviour inside tmux. From clemens fischer.
2010-02-08Sync OpenBSD patchset 641:Tiago Cunha
next-layout is bound to Space not C-Space.
2010-02-08Sync OpenBSD patchset 640:Tiago Cunha
Use the array.h code for the causes list.
2010-02-08Sync OpenBSD patchset 639:Tiago Cunha
Support attaching a client read-only with a new -r flag to the attach-session command.
2010-02-08Sync OpenBSD patchset 638:Tiago Cunha
Change nested check to compare server socket path rather than just assuming that if $TMUX is set it is nested. From Micah Cowan.
2010-02-08Sync OpenBSD patchset 637:Tiago Cunha
Clean up $TMUX parsing, from Micah Cowan, tweaked by me.
2010-02-08Sync OpenBSD patchset 636:Tiago Cunha
Rectangle copy support, from Robin Lee Powell.
2010-02-08Sync OpenBSD patchset 635:Tiago Cunha
Instead of bailing out on the first configuration file error, carry on, collecting all the errors, then start with the active window in more mode displaying them.
2010-02-05Update.Tiago Cunha
2010-02-05Sync OpenBSD patchset 634:Tiago Cunha
vi-style B, W and E keys in copy mode to navigate between words treating only spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me.
2010-02-05Sync OpenBSD patchset 633:Tiago Cunha
Read the path from $TMUX if it is present and -L and -S are not given. Based on a diff from Micah Cowan.
2010-02-05Sync OpenBSD patchset 632:Tiago Cunha
Option to display the active pane in a different colour with the display-panes command. From Paul Hoffman, thanks.
2010-02-05Sync OpenBSD patchset 631:Tiago Cunha
Fix divide by zero on small windows with main-* layouts.
2010-02-04+.Nicholas Marriott
2010-02-03+.Nicholas Marriott
2010-02-03Make it detect multiple options with a single leading `-' (eg set -gw).Tiago Cunha
2010-02-02Sync OpenBSD patchset 630:Tiago Cunha
If redrawing line 0 of the screen onto the tty, there can't be a wrap flag on the previous line, so move the cursor. Fixes status line redraw issues when resizing in choose mode and hopefully at other times as well.
2010-02-02Sync OpenBSD patchset 629:Tiago Cunha
Add scroll-up/scroll-down for choose/more mode, from Micah Cowan.