summaryrefslogtreecommitdiffstats
path: root/window.c
AgeCommit message (Expand)Author
2018-11-19evbuffer_new and bufferevent_new can both fail (when malloc fails) andnicm
2018-10-18Support for windows larger than visible on the attached client. This hasnicm
2018-08-05calloc the mode data instead of malloc and initialize everything.nicm
2018-08-02Log command arguments.nicm
2018-05-24Make server_client_get_cwd used (almost) everywhere we need to work outnicm
2018-05-24Improve logging of the environment etc for new panes.nicm
2018-03-16Insert full size panes at the right position, from KOIE Hidetaka innicm
2017-11-09If we successfully change the directory, set PWD too to give the shell anicm
2017-10-12Show exit status and time in the remain-on-exit pane text, mostly fromnicm
2017-08-28Do not forbid targets to specify non-visible panes - the checks fornicm
2017-07-14Because ignore SIGCHLD early, letting signal_del restore it doesn't worknicm
2017-07-12Block signals between forking and clearing signal handlers (or callingnicm
2017-07-12Move signal code into proc.c.nicm
2017-07-03Change previous to not wait for both process exit and pty close -nicm
2017-07-03Do not close panes until process has exited and any outstanding datanicm
2017-06-28Apply the xterm key flag when needed for send-keys, fixes problemnicm
2017-06-04Be more strict about escape sequences that rename windows or set titles:nicm
2017-05-31Because we defer actually resizing applications (calling TIOCSWINSZ)nicm
2017-05-30Rewrite of choose mode, both to simplify and tidy the code and to addnicm
2017-05-29Add ||, && format operators and C: to search pane content.nicm
2017-05-12Store copy mode search string in pane so search-again command works evennicm
2017-05-04Some new notifications, mainly for active pane and current window andnicm
2017-04-28Log what is happening with window and session reference counts much morenicm
2017-04-28Remove a reference from the right window when removing from a winlink'snicm
2017-04-20Use fdforkpty() instead of our own unwrapped versions.nicm
2017-04-20Now that struct winlink has a session pointer, can remove some arguments.nicm
2017-04-20There is no real need for window_printable_flags to allocate, make itnicm
2017-03-21Fix pane movement by direction (up, down, left, right) whennicm
2017-03-13Log where panes are created.nicm
2017-02-27If splitw -b is used, insert the new pane before the current one in thenicm
2017-02-22Minor bits: fix an array size, add comment, make grid_cell_entry static.nicm
2017-02-08Remove event watermarks, don't work well enough to be worth it.nicm
2017-01-24Shorten a long line, and don't leak buffer in paste_add if size is zero.nicm
2017-01-23Open /dev/ptm before pledge() and save it to be used for PTMGET laternicm
2017-01-12Put all palette functions together in the file.nicm
2017-01-12Erm the aixterm colours should start at 8, not 7.nicm
2017-01-12Fix setting the palette of aixterm colours (90-97).nicm
2017-01-07Add support for the OSC 4 and OSC 104 palette setting escape sequences,nicm
2016-11-16Initialize modeprefix to 1 properly in window_pane_create, from Artem Fokin.nicm
2016-11-16The target validity check used window_pane_visible but that may be falsenicm
2016-10-19Alerts are too slow, so rather than walking all sessions and windows,nicm
2016-10-18Store the right size in the pipe offset for pipe-pane.nicm
2016-10-16Use the notify name string instead of going via an enum and changenicm
2016-10-15Give window_create and window_create1 better names.nicm
2016-10-13Add support for BCE (background colour erase). This makes various escapenicm
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.nicm
2016-10-11Fundamental change to how copy mode key bindings work:nicm
2016-09-28Rate limit TIOCSWINSZ on a timer to avoid programs getting hammered withnicm
2016-09-16Swap watermarks from high (4096) to low (128) when we get full buffersnicm
2016-07-15Tweak output of environment logging.nicm