summaryrefslogtreecommitdiffstats
path: root/window.c
AgeCommit message (Expand)Author
2020-12-15Make synchronize-panes a pane option and add -U flag to set-option tonicm
2020-06-13Add -b flags to insert a window before (like the existing -a for after)nicm
2020-06-05Change how panes are resized so that the code is clearer and if the panenicm
2020-06-01Instead of sending all data to control mode clients as fast as possible,nicm
2020-05-21Support code for control mode flow control: allow clients to havenicm
2020-05-16Move lazy resize from the pane to the window, there is no point innicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Use a grid cell not a style for the pane style.nicm
2020-04-13Make client -c and -t handling common in cmd-queue.c and try to benicm
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm
2020-04-10Now that copy mode copies the pane content rather than keeping anicm
2020-04-09Pass correct flags to fnmatch.nicm
2020-04-06Change copy mode to make copy of the pane history so it does not need tonicm
2020-03-31Move alternate screen into the screen rather than the pane.nicm
2020-03-19Change input path so it doesn't require a pane.nicm
2020-03-16FIx type for %u, from Thomas Adam.nicm
2020-02-14Fix top/bottom pane calculation with pane border status enabled,nicm
2020-01-13Treat plausible but invalid keys (like C-BSpace) as literal like anynicm
2019-12-12Rewrite the code for reading and writing files. Now, if the client isnicm
2019-11-28Make a best effort to set xpixel and ypixel for each pane and addnicm
2019-10-28Start with empty rather than NULL window name to avoid NULL printf ifnicm
2019-09-10Make client exit if pane where input is going is closed.nicm
2019-08-28The resize event was never deciding to actually resize the pane if therenicm
2019-08-14Add -Z flag to rotate-window, select-pane, swap-pane, switch-client tonicm
2019-06-30Do not double free window if pane fails to start.nicm
2019-06-26Fix a typo in window_pane_find_down (w not wp) and a missing PANE_STATUS_TOP.nicm
2019-06-26Log window and pane resizes.nicm
2019-06-26Add #define for the pane status line option position numbers.nicm
2019-06-24Trim trailing spaces when matching.nicm
2019-06-20allow-rename and alternate-screen can be pane options.nicm
2019-06-20Add a per-pane option set. Pane options inherit from window options (sonicm
2019-06-18Add a cmdq_continue function rather than twiddling the flag directly.nicm
2019-06-13Add regular expression support for the format search, match andnicm
2019-06-09Exiting alternate screen mode should restore cursor position andnicm
2019-05-30Remove a leftover abort and some fixes from cppcheck.nicm
2019-05-07Do not use evbuffer_add_buffer because it is destructive and doesn'tnicm
2019-05-03Allow panes to be empty (no command), output can be piped to them withnicm
2019-04-26Destroy panes before options to avoid crash when forced into a mode by anicm
2019-04-17Break new window and pane creation common code from various commands andnicm
2019-03-18Free temporary screens when writing format.nicm
2019-03-18Extend the #[] style syntax and use that together with previous formatnicm
2019-03-18Mode init needs to be fired with the mode on the list or it will not benicm
2019-03-18Add format variables for the default formats for the various modesnicm
2019-03-14Add a wrapper (struct style) around styles rather than using thenicm
2019-03-12Fix resizing of control clients, should be ignored until SIZECHANGED flag set.nicm
2019-03-12Allow multiple modes to be open in a pane. A stack of open modes is keptnicm
2019-03-07Add a separate mode struct for the active window mode if any.nicm
2018-12-18Pass window into mode functions.nicm
2018-11-30Clear PANE_EXITED flag when starting new child process in case the panenicm