Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-10-05 |
|\ | |||
| * | mouse-resize-pane: Only resize on border select | Thomas Adam | 2013-10-02 |
| | | | | | | | | | | | | | | | | | | | | The current behaviour of mouse-resize-pane is such that if the mouse button is held down and a selection takes place within a pane, that if the mouse pointer then hits a border edge, that pane-resize would initiate. This seems counter-intuitive; instead, check for a resize condition if the border of a pane is selected, and in the case of mouse selection within a pane, no longer resize the pane if edge of the border is hit. | ||
* | | Use open(".")/fchdir() to save and restore current directory rather than | Nicholas Marriott | 2013-10-05 |
|/ | | | | getcwd()/chdir(). | ||
* | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-10-01 |
|\ | |||
| * | Make cmdq->client_exit a tristate (-1 means "not set") so that if explicitly | Nicholas Marriott | 2013-10-01 |
| | | | | | | | | | | set it can be copied from child to parent cmdq by if-shell and source-file. This fixes using attach or new. From Chris Johnsen. | ||
| * | Restore missing key binding for %, from Chris Johnsen. | Nicholas Marriott | 2013-10-01 |
| | | |||
| * | First period not last for host_short, from Michael Scholz. | Nicholas Marriott | 2013-10-01 |
| | | |||
| * | layout-resize-pane-mouse: Consider visible panes only | Thomas | 2013-09-30 |
| | | | | | | | | | | | | When a pane is maximized, and text is selected, we end up checking if a pane switch is needed. This therefore means we might end up selecting panes which aren't visible. | ||
| * | Don't treat TMUX_TMPDIR as a potential file | Thomas | 2013-09-30 |
| | | | | | | | | | | | | | | | | | | | | | | The point of setting TMUX_TMPDIR is to then make any labels from -L go to that directory. In the case of makesocketpath() with no TMUX_TMPDIR set, would set both the path and the default socket to a file. The checking of the permissions on the file worked fine in that case, but when TMUX_TMPDIR is set, won't work on a directory. This fixes the problem by ensuring the check on the permissions is performed on directories only. | ||
| * | Mark flags as optional and mutually exclusive. | Tiago Cunha | 2013-08-31 |
| | | |||
* | | Support -c for new-session, based on code from J Raynor. | Nicholas Marriott | 2013-10-01 |
|/ | |||
* | Add entry about smaller clients based on text from Thomas Adam. | Nicholas Marriott | 2013-08-31 |
| | |||
* | No space in lsw -a targets. | Nicholas Marriott | 2013-08-28 |
| | |||
* | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code | Nicholas Marriott | 2013-08-23 |
|\ | |||
| * | 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. | ||
| * | | Remove the barely-used and unnecessary command check() function. | Nicholas Marriott | 2013-08-21 |
| | | | |||
* | | | Set EVENT_NOEPOLL on Linux again. | Nicholas Marriott | 2013-08-23 |
| |/ |/| | |||
* | | 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. | ||
* | 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 |
| | |