summaryrefslogtreecommitdiffstats
path: root/window-tree.c
AgeCommit message (Collapse)Author
2020-01-08Merge branch 'obsd-master'Thomas Adam
2020-01-08Add -Z to default switch-client command in tree mode, matches previousnicm
behaviour.
2019-12-03Merge branch 'obsd-master'Thomas Adam
2019-12-03Style nits in function arguments.nicm
2019-10-15Merge branch 'obsd-master'Thomas Adam
2019-10-15Rewrite options_array_set to be clearer and remove a spurious warningnicm
with newer GCC. From Ben Boeckel.
2019-09-25Merge branch 'obsd-master'Thomas Adam
2019-09-25Style and line length nits.nicm
2019-08-16Merge branch 'obsd-master'Thomas Adam
2019-08-16Add a flag to reverse sort in the various choose modes, from Benjaminnicm
Poirier in GitHub issue 1875.
2019-05-28Merge branch 'obsd-master'Thomas Adam
2019-05-28Change display-menu from taking a single string to a set of arguments,nicm
which is much easier to work with. Based on a diff from Avi Halachmi.
2019-05-12Merge branch 'obsd-master'Thomas Adam
2019-05-12Add simple menus to tree, client, buffer modes.nicm
2019-04-30Merge branch 'obsd-master'Thomas Adam
2019-04-30Fix memory leak in window tree search, from Amos Bird.nicm
2019-04-17Break new window and pane creation common code from various commands andnicm
window.c into a separate file spawn.c.
2019-04-07Break new window and pane creation common code from various commands andNicholas Marriott
window.c into a separate file spawn.c.
2019-03-18Merge branch 'obsd-master'Thomas Adam
2019-03-18Add format variables for the default formats for the various modesnicm
(tree_mode_format and so on) and add a -a flag to display-message to list variables with values.
2019-03-12Merge branch 'obsd-master'Thomas Adam
2019-03-12DECRC and DECSC apparently need to preserve origin mode as well, basednicm
on a fix from Marc Reisner.
2019-03-07Merge branch 'obsd-master'Thomas Adam
2019-03-07Add a separate mode struct for the active window mode if any.nicm
2018-12-18Merge branch 'obsd-master'Thomas Adam
2018-12-18Pass window into mode functions.nicm
2018-08-19Merge branch 'obsd-master'Thomas Adam
2018-08-19Expand \u and \U escape sequences in command strings, from Christophernicm
Hunt in GitHub issue 1443.
2018-04-10Merge branch 'obsd-master'Thomas Adam
2018-04-10Add x and X to choose-tree (with a confirmation prompt) to kill annicm
item. Suggested by Matt Zagrabelny.
2018-03-29Merge branch 'obsd-master'Thomas Adam
2018-03-29Do not crash on empty window, reported by Jamie Macdonald in GitHubnicm
issue 1299. Patch from Thomas Adam.
2018-02-28Merge branch 'obsd-master'Thomas Adam
2018-02-28Add -Z flag to choose-tree, choose-client, choose-buffer tonicm
automatically zoom the pane when the mode is entered and unzoom when it exits, assuming the pane is not already zoomed. Add -Z to the default key bindings.
2017-11-03Merge branch 'obsd-master'Thomas Adam
2017-11-03Support mouse on preview in tree mode.nicm
2017-11-03Merge branch 'obsd-master'Thomas Adam
2017-11-02Make the mode draw function use the parent screen directly rather thannicm
its own to avoid copying twice.
2017-11-02Merge branch 'obsd-master'Thomas Adam
2017-11-02Format for group list of "other sessions" is a bit weird, just list allnicm
the sessions in the group.
2017-11-02Tweak previous slightly so that current session is chosen if it is innicm
the group rather than first.
2017-11-02Only show the first member of session groups in tree mode (-G flagnicm
disables).
2017-10-26Merge branch 'obsd-master'Thomas Adam
2017-10-26Fix crash exiting command prompt (from Alex Maese in GitHub issue 1139)nicm
and a man page tweak from jmc.
2017-10-25Merge branch 'obsd-master'Thomas Adam
2017-10-25Add P key to paste tagged in buffer mode, and trim some code that shouldnicm
no longer be necessary.
2017-10-22Merge branch 'obsd-master'Thomas Adam
2017-10-22Use window_pane_index() when drawing pane numbers (so pane-base-index isnicm
applied), from Thomas Adam. GitHub issue 1125.
2017-10-11Merge branch 'obsd-master'Thomas Adam
2017-10-11Box around label in preview.nicm