summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-09-25If the terminal has colors=256, only try to use setaf/setab if theynicm
exist, reported by Filipe Brandenburger.
2015-09-25Free the history when it is cleared, based on a diff from Carlo Cannas.nicm
2015-09-24Don't leak fd and path on failure.nicm
2015-09-24Do not leak log file descriptor.nicm
2015-09-24Assign flag not number for flag types (we got away with it so farnicm
because that are a union). From Filipe Brandenburger.
2015-09-22Don't update last session when the session is unchanged, from Sina Siadat.nicm
2015-09-21Reset the alerts timer always on activity, from Thomas Adam.nicm
2015-09-18-l should apply to the new not the old pane with -b, from "MadMaverick9"nicm
on GitHub.
2015-09-17Redraw both src and dst sessions in break-pane.nicm
2015-09-16Log when cmdq_continue is called.nicm
2015-09-16Give some variables less silly names.nicm
2015-09-16A few minor style nits.nicm
2015-09-16Hoist some common code out of both branches of an if/else.nicm
2015-09-16Rename cmd_q dead flag to a general flags bitmask (will be more flags later).nicm
2015-09-14Remove some extra blank lines.nicm
2015-09-14Should add buffer if no -b.nicm
2015-09-14Move tzset() from log_open to main.nicm
2015-09-14Style nit, int for flags not u_int.nicm
2015-09-14When the active pane changes, redraw panes if the style hasnicm
changed. From Cam Hutchison.
2015-09-14Make refresh-client force update of jobs, from Sina Siadat.nicm
2015-09-13Add copy-mode -e to exit copy mode when scrolling off the bottom, usefulnicm
for quick view of history, from Cam Hutchison.
2015-09-13Set woken flag when flushing so that the channel is freed, while herenicm
use the same loop construct for both loops.
2015-09-11Merge delete-buffer into cmd-set-buffer.c and change the paste buffernicm
API so it has one paste_free() rather than free_top and free_name (everywhere that uses it already has the right pointer).
2015-09-10Add session_last_attached time and format, from Sina Siadat.nicm
2015-09-09No need to keep global options around for client which doesn't use them.nicm
2015-09-04Change wait-for to work when the signal comes before the wait, also usenicm
some helper functions and add some logging.
2015-09-03A couple of style nits.nicm
2015-09-02Log pane which received input data.nicm
2015-09-02A one line helper function is a little silly.nicm
2015-09-02We no longer need the terminal service class, so don't bother asking for it.nicm
2015-09-02Fix indentation of grid_string_cells_fg.nicm
2015-09-01Tweak some error messages/comments.nicm
2015-09-01Log the whole new input buffer once rather than each byte.nicm
2015-09-01Pass logging through vis(3).nicm
2015-09-01Fix a spelling error, sesson -> session.nicm
2015-09-01Remove dead_clients which is no longer used.nicm
2015-09-01Work out config file when needed not at startup.nicm
2015-09-01Move initial conf load into cfg.c.nicm
2015-09-01All the cmd_*_entry declarations do not need to be in tmux.h.nicm
2015-08-30Path from $TMUX does not need to be global anymore.nicm
2015-08-30Login shell can be a client flag, and move the exec code into client.c.nicm
2015-08-30Event base does not need to be global.nicm
2015-08-30Some style nits and dead assignments.nicm
2015-08-29Remove some old prototypes and unused functions.nicm
2015-08-29struct args_entry can go into arguments.c.nicm
2015-08-29paste_send_pane can be merged into cmd-paste-buffer.c now.nicm
2015-08-29Move struct paste_buffer out of tmux.h.nicm
2015-08-29We already loop over the windows in server_client_loop, so don't do itnicm
again in server_loop just to check names.
2015-08-29Move alerts onto events rather than checking every loop.nicm
2015-08-29Treat entering or leaving a mode as pane changed.nicm