diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-05-09 12:51:41 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-05-09 12:52:38 +0100 |
commit | 504b97b6a4314a7a052d9b05de746515e2a03628 (patch) | |
tree | 6b6316b7f7d35725bd0ce2377adae1847cc324da /window-choose.c | |
parent | 6525ca51584636ef781bda147d37d5d0d10899e0 (diff) | |
parent | 92faa2eaebd32117f01b0b7d7ae81abdfde2d935 (diff) | |
download | rtmux-504b97b6a4314a7a052d9b05de746515e2a03628.tar.gz rtmux-504b97b6a4314a7a052d9b05de746515e2a03628.tar.bz2 rtmux-504b97b6a4314a7a052d9b05de746515e2a03628.zip |
Merge branch 'obsd-master'
Conflicts:
tmux.h
Diffstat (limited to 'window-choose.c')
-rw-r--r-- | window-choose.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/window-choose.c b/window-choose.c index 8672212a..2af56e23 100644 --- a/window-choose.c +++ b/window-choose.c @@ -22,6 +22,7 @@ #include <stdlib.h> #include <string.h> +#include "array.h" #include "tmux.h" struct screen *window_choose_init(struct window_pane *); @@ -59,6 +60,14 @@ const struct window_mode window_choose_mode = { NULL, }; +struct window_choose_mode_item { + struct window_choose_data *wcd; + char *name; + int pos; + int state; +#define TREE_EXPANDED 0x1 +}; + struct window_choose_mode_data { struct screen screen; |