diff options
author | nicm <nicm> | 2015-06-04 11:43:51 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-06-04 11:43:51 +0000 |
commit | a863834574ec02b87ff0e7245ef31f0d4543ab34 (patch) | |
tree | 4fe2aa4fe98c34bb0d56e5032460889b70dfc317 /tmux.h | |
parent | a3edfd9e84f4f8e9b74425cdc4b00fe9cb3d0ba6 (diff) | |
download | rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.tar.gz rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.tar.bz2 rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.zip |
Add support for a single "marked pane". There is one marked pane in the
server at a time; it may be toggled or cleared with select-pane -m and
-M (the border is highlighted). A new target '~' or '{marked}' specifies
the marked pane to commands and it is the default target for the
swap-pane and join-pane -s flag (this makes them much simpler to use -
mark the source pane and then change to the target pane to run swapp or
joinp).
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1688,8 +1688,12 @@ struct session *cmd_find_current(struct cmd_q *); struct session *cmd_find_session(struct cmd_q *, const char *, int); struct winlink *cmd_find_window(struct cmd_q *, const char *, struct session **); +struct winlink *cmd_find_window_marked(struct cmd_q *, const char *, + struct session **); struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **, struct window_pane **); +struct winlink *cmd_find_pane_marked(struct cmd_q *, const char *, + struct session **, struct window_pane **); struct client *cmd_find_client(struct cmd_q *, const char *, int); int cmd_find_index(struct cmd_q *, const char *, struct session **); @@ -1850,6 +1854,15 @@ const char *key_string_lookup_key(int); /* server.c */ extern struct clients clients; extern struct clients dead_clients; +extern struct session *marked_session; +extern struct winlink *marked_winlink; +extern struct window_pane *marked_window_pane; +void server_set_marked(struct session *, struct winlink *, + struct window_pane *); +void server_clear_marked(void); +int server_is_marked(struct session *, struct winlink *, + struct window_pane *); +int server_check_marked(void); int server_start(int, char *); void server_update_socket(void); void server_add_accept(int); |