mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
window_choose_mode_item can move into window-choose.c.
This commit is contained in:
8
tmux.h
8
tmux.h
@ -823,14 +823,6 @@ struct window_choose_data {
|
|||||||
char *command;
|
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. */
|
/* Child window structure. */
|
||||||
struct input_ctx;
|
struct input_ctx;
|
||||||
struct window_pane {
|
struct window_pane {
|
||||||
|
@ -60,6 +60,14 @@ const struct window_mode window_choose_mode = {
|
|||||||
NULL,
|
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 window_choose_mode_data {
|
||||||
struct screen screen;
|
struct screen screen;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user