summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2015-09-14Style nit, int for flags not u_int.nicm
2015-09-14When the active pane changes, redraw panes if the style hasnicm
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
2015-09-11Merge delete-buffer into cmd-set-buffer.c and change the paste buffernicm
2015-09-10Add session_last_attached time and format, from Sina Siadat.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-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-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-29Move alerts onto events rather than checking every loop.nicm
2015-08-29Better take on reducing the name timer. Again check for name changes innicm
2015-08-28Revert previous; we do need a timer, until I have a better idea. Wenicm
2015-08-28We now only checking for name changes when the active pane has changed,nicm
2015-08-28Per-session timers for locking, and remove the global one-second timer.nicm
2015-08-28Make session_update_activity more useful and use it in more places.nicm
2015-08-28Give clock mode its own timer.nicm
2015-08-28Run status update on a per-client timer at status-interval.nicm
2015-08-28Move format job cleanup onto its own timer.nicm
2015-08-28Only do the automatic-rename dance if the pane has changed (seen output,nicm
2015-07-29status_out and associated data structures are no longer used.nicm
2015-07-28Tidy up the way terminals are described and move some structs out of tmux.h.nicm
2015-07-20Add an option (history-file) for a file to save/restore command promptnicm
2015-07-13Fix line endings.nicm
2015-07-13Initialize cwd fd to -1 so that we don't close fd 0 if the client isnicm
2015-06-17Move the shuffle code from new-window -a into a function and add a -anicm
2015-06-17Use an explicit job state instead of avoid closing our side of thenicm
2015-06-15Add window_activity format, from Thomas Adam based on a diff originallynicm
2015-06-14Add a format for client PID (client_pid) and server PID (pid). Diff fornicm
2015-06-07Add -E flag when attaching or switching client to bypassnicm
2015-06-05Handle the RGB colour escape sequence (\033[38;2;<r>;<g>;<b>m and 48;2)nicm
2015-06-05Similarly, for sessions use a callback to free rather than checkingnicm
2015-06-05Change deref to the more sensible unref, and add a couple I missed before.nicm
2015-06-05Instead of putting dead clients on a list and checking it every loop,nicm
2015-06-04Move the nested check from client to server and compare the client ttynicm
2015-06-04Add support for a single "marked pane". There is one marked pane in thenicm
2015-05-27Move the jobs output cache into the formats code so that #() work morenicm
2015-05-12To replace c0-*, add a high watermark to the pty event, and also backoffnicm
2015-05-12Add bell-action "other" to pass through bells in all windows except thenicm
2015-05-11Remove the c0-* options which never really worked satisfactorily. Goingnicm
2015-05-08Put the tty structs together, and tabify.nicm