Indicate the marked pane in choose mode in reverse and add key to set

and clear it (m and M) and a key to jump to the starting pane (H).
This commit is contained in:
nicm
2020-04-22 21:01:28 +00:00
parent 662728d6c7
commit 899b3d2436
3 changed files with 54 additions and 9 deletions

3
tmux.h
View File

@ -2621,7 +2621,8 @@ typedef void (*mode_tree_each_cb)(void *, void *, struct client *, key_code);
u_int mode_tree_count_tagged(struct mode_tree_data *);
void *mode_tree_get_current(struct mode_tree_data *);
void mode_tree_expand_current(struct mode_tree_data *);
void mode_tree_set_current(struct mode_tree_data *, uint64_t);
void mode_tree_expand(struct mode_tree_data *, uint64_t);
int mode_tree_set_current(struct mode_tree_data *, uint64_t);
void mode_tree_each_tagged(struct mode_tree_data *, mode_tree_each_cb,
struct client *, key_code, int);
void mode_tree_down(struct mode_tree_data *, int);