Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | A couple of manpage fixes from Tiago Cunha. | Nicholas Marriott | 2013-08-22 |
| | |||
* | Trivial style and spacing nits. | Nicholas Marriott | 2013-08-21 |
| | |||
* | Remove from TODO. | Nicholas Marriott | 2013-08-21 |
| | |||
* | ++ to TODO. | Nicholas Marriott | 2013-08-21 |
| | |||
* | + to TODO. | Nicholas Marriott | 2013-08-21 |
| | |||
* | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-08-21 |
|\ | |||
| * | Clear window->flags when clearing winlinks | Thomas | 2013-08-20 |
| | | | | | | | | | | | | | | | | When clearing WINLINK_ALERTFLAGS for all sessions, we must also, for that window, clear the window->flags as well, otherwise sessions may well still see flags for winlinks long since cleared. This therfore introduces WINDOW_ALERTFLAGS to help with this. | ||
| * | choose-tree: Reset top when toggling items | Thomas | 2013-08-20 |
| | | | | | | | | | | | | | | | | | | | | | | | | When choose-tree is told to expand/collapse items (especially when first rendering collapsed to just show sessions), ensure that in addition to setting the selected item, that the item itself appears on the bottom of the screen, rather than off screen. This was causing rendering glitches when a very small tmux window tried to render a list of items in choose-tree much larger than itself, and the selected item appeared off screen, and didn't show the selection until the selection had wrapped around to the top of the screen. | ||
| * | Renumber windows: Lookup lastw via window not index | Thomas Adam | 2013-08-20 |
| | | | | | | | | | | | | | | | | | | | | | | When calling 'movew -r' on a session to reorder the winlinks, ensure when adding back in the information for the lastw stack that we look up the winlink based on the window and not its index. Using the index doesn't make sense here because when comparing it to the old set, it will never match since the winlink has been renumbered. Bug reported by Ben Boeckel. | ||
| * | Assign mouse x/y coords before checking them | Thomas | 2013-08-20 |
| | | | | | | | | | | | | When receiving mouse inputs, we should set the x/y coordinates earlier than we currently do, so that we aren't off-by-one in the case when the statusbar is at the top of the screen. | ||
| * | Accept multiple parameters to SM/RM/DECSET/DECRST, based on a diff from Hayaki | Nicholas Marriott | 2013-08-19 |
| | | | | | | | | Saito. | ||
* | | Remove the barely-used and unnecessary command check() function. | Nicholas Marriott | 2013-08-21 |
|/ | |||
* | Add automatic-rename-format option allowing automatic rename to use something | Nicholas Marriott | 2013-08-19 |
| | | | | other than pane_current_command. | ||
* | Allow nested format expansion. | Nicholas Marriott | 2013-08-19 |
| | |||
* | Add length limit operator for formats. | Nicholas Marriott | 2013-08-03 |
| | |||
* | + to TODO. | Nicholas Marriott | 2013-08-02 |
| | |||
* | Handle input mouse positions <33 (we already can generate them). | Nicholas Marriott | 2013-08-02 |
| | |||
* | Only include actual trailing spaces not unused cells with capturep -J, from | Nicholas Marriott | 2013-08-01 |
| | | | | George Nachman. | ||
* | Allow the file descriptor received from the client to be -1 - it can be on | Nicholas Marriott | 2013-08-01 |
| | | | | Cygwin when stdin is not a terminal. Reported by A Young, SF bug 52. | ||
* | Add formats for window flags. | Nicholas Marriott | 2013-08-01 |
| | |||
* | Don't leak formats if they are added multiple times. | Nicholas Marriott | 2013-08-01 |
| | |||
* | Don't add client formats when they are NULL. | Nicholas Marriott | 2013-08-01 |
| | |||
* | Missing space in refresh-client synopsis. | Nicholas Marriott | 2013-08-01 |
| | |||
* | Grouped sessions were being leaked on destroy, correctly free them. | Nicholas Marriott | 2013-08-01 |
| | |||
* | Make recalculate_sizes() handle an empty window with no active pane. This can | Nicholas Marriott | 2013-08-01 |
| | | | | | | happen when a window is in two sessions - it isn't destroyed immediately when the pane goes away but is left until the last session is destroyed. Fixes problems with grouped sessions reported by Daniel Ralston. | ||
* | Pass flags into cmdq_guard as an argument since sometimes cmdq->cmd can be | Nicholas Marriott | 2013-08-01 |
| | | | | NULL. Avoids crash when a command in a command client can't be parsed. | ||
* | Add destroy entry to TODO. | Nicholas Marriott | 2013-07-27 |
| | |||
* | Merge branch 'obsd-master' | Thomas Adam | 2013-07-13 |
|\ | |||
| * | Make next-word-end work properly with vi(1) keys, reported by patrick | Nicholas Marriott | 2013-07-12 |
| | | | | | | | | keshishian. | ||
* | | Add support for Cgywin, apparently it is enough just to open the tty again in | Nicholas Marriott | 2013-07-12 |
| | | | | | | | | | | | | the server and fd passing is not necessary. Needs some ifdefs unfortunately but no way around that and some of them can go next time we're willing to do a protocol bump. Patch from J Raynor jxraynor at gmail dot com. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2013-07-06 |
|\| | |||
| * | Add pane_synchronized format, from Romain Francoise. | Nicholas Marriott | 2013-07-05 |
| | | |||
| * | Clarify error messages when setting options, from Thomas Adam. | Nicholas Marriott | 2013-07-05 |
| | | |||
| * | When the session option renumber-window is used, ensure we iterate over | Nicholas Marriott | 2013-07-05 |
| | | | | | | | | | | all sessions in that group when the winlinks are reordered, otherwise the winlink lists are out of sync with one another. From Thomas Adam. | ||
| * | Whitespace nits, from Ben Boeckel. | Nicholas Marriott | 2013-07-05 |
| | | |||
| * | Implement s, S, C mode switch commands in vi(1) mode, from Ben Boeckel. | Nicholas Marriott | 2013-07-05 |
| | | |||
| * | Focus events can cause trouble if left on and they can't be turned off | Nicholas Marriott | 2013-06-23 |
| | | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off. | ||
| * | Always push a focus event when the application turns it on, prompted by | Nicholas Marriott | 2013-06-23 |
| | | | | | | | | discussion with Hayaki Saito a while ago. | ||
| * | Mark control commands specially so the client can identify them, based | Nicholas Marriott | 2013-06-23 |
| | | | | | | | | on a diff from George Nachman a while back. | ||
* | | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-07-05 |
|\ \ | |||
| * | | Focus events can cause trouble if left on and they can't be turned off | Nicholas Marriott | 2013-06-28 |
| | | | | | | | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off. | ||
| * | | Always push a focus event when the application turns it on, prompted by | Nicholas Marriott | 2013-06-28 |
| | | | | | | | | | | | | discussion with Hayaki Saito a while ago. | ||
| * | | Mark control commands specially so the client can identify them, based | Nicholas Marriott | 2013-06-28 |
| | | | | | | | | | | | | on a diff from George Nachman a while back. | ||
| * | | +strings.h in compat/. | Nicholas Marriott | 2013-06-25 |
| | | | |||
| * | | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-06-25 |
| |\ \ | |||
| * | | | Don't set TMUX_CONF in tmux.h. | Nicholas Marriott | 2013-06-25 |
| | | | | |||
* | | | | Section on clipboard, from Thomas Adam. | Nicholas Marriott | 2013-07-05 |
| |/ / |/| | | |||
* | | | Use _XPG6 on Solaris with GCC because the headers are insane and don't like GCC | Nicholas Marriott | 2013-06-25 |
|/ / | | | | | | | | | | | | | | | | | with -std=gnu99 and _XPG4_2. We should not really be using _XPG* at all but there doesn't seem to be a magic define that says "give me the latest standard", and things are further confused by the CMSG_DATA check in configure.ac which sets _XOPEN_SOURCE _XOPEN_SOURCE_EXTENDED. While here add COPYING to EXTRA_DIST. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2013-06-13 |
|\| | |||
| * | revert r1.156 "Add support for focus notifications when tmux pane changes" | Stuart Henderson | 2013-06-11 |
| | | | | | | | | | | beck@ found annoying beeps if a machine was shutdown while tmux is running and you then focus in/out of an xterm; kettenis tracked it down to 1.156. |