summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2015-11-18Use __unused rather than rolling our own.nicm
2015-11-18Sync the entire xmalloc.[ch] with the other users, but with the additionnicm
2015-11-15Make key_code unsigned long long not uint64_t which is more portable fornicm
2015-11-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-14Be more strict about invalid UTF-8.nicm
2015-11-14Push stdout and stderr to clients more aggressively, and add an event tonicm
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
2015-11-12Add utf8_padcstr and use it to align columns in list-keys.nicm
2015-11-12Tidy utf8.c a little: build table on first use, and make utf8_width takenicm
2015-11-12If we know the terminal outside tmux is not UTF-8, replace UTF-8 innicm
2015-11-12Nuke the utf8 and status-utf8 options and make tmux only a UTF-8nicm
2015-11-12Support UTF-8 key bindings by expanding the key type from int tonicm
2015-10-31The output log is only useful once and it means creating a file, so opennicm
2015-10-31Because pledge(2) does not allow us to pass directory file descriptorsnicm
2015-10-28Like options, move the environ struct into environ.c.nicm
2015-10-27Move struct options into options.c.nicm
2015-10-27Break the common process set up, event loop and imsg dispatch codenicm
2015-10-25Extend the modifiers allowed before formats: as well as the existingnicm
2015-10-23Format for scroll position, from Jorge Morante.nicm
2015-10-18Pass current directory as a string rather than a file descriptor becausenicm
2015-09-25Free the history when it is cleared, based on a diff from Carlo Cannas.nicm
2015-09-16Rename cmd_q dead flag to a general flags bitmask (will be more flags later).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
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