mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 19:58:48 +00:00
window_choose_mode_item can move into window-choose.c.
This commit is contained in:
parent
c4a4bd6ac5
commit
a538141a72
8
tmux.h
8
tmux.h
@ -823,14 +823,6 @@ struct window_choose_data {
|
||||
char *command;
|
||||
};
|
||||
|
||||
struct window_choose_mode_item {
|
||||
struct window_choose_data *wcd;
|
||||
char *name;
|
||||
int pos;
|
||||
int state;
|
||||
#define TREE_EXPANDED 0x1
|
||||
};
|
||||
|
||||
/* Child window structure. */
|
||||
struct input_ctx;
|
||||
struct window_pane {
|
||||
|
@ -60,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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user