mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Add an option to move the status line to the top of the screen,
requested by many.
This commit is contained in:
8
tmux.h
8
tmux.h
@ -1078,6 +1078,9 @@ struct tty_ctx {
|
||||
u_int orupper;
|
||||
u_int orlower;
|
||||
|
||||
u_int xoff;
|
||||
u_int yoff;
|
||||
|
||||
/* Saved last cell on line. */
|
||||
struct grid_cell last_cell;
|
||||
struct grid_utf8 last_utf8;
|
||||
@ -1463,8 +1466,8 @@ void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
|
||||
int tty_open(struct tty *, const char *, char **);
|
||||
void tty_close(struct tty *);
|
||||
void tty_free(struct tty *);
|
||||
void tty_write(void (*)(
|
||||
struct tty *, const struct tty_ctx *), const struct tty_ctx *);
|
||||
void tty_write(
|
||||
void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *);
|
||||
void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
|
||||
void tty_cmd_cell(struct tty *, const struct tty_ctx *);
|
||||
void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
|
||||
@ -1722,6 +1725,7 @@ void server_update_event(struct client *);
|
||||
/* status.c */
|
||||
int status_out_cmp(struct status_out *, struct status_out *);
|
||||
RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp);
|
||||
int status_at_line(struct client *);
|
||||
void status_free_jobs(struct status_out_tree *);
|
||||
void status_update_jobs(struct client *);
|
||||
void status_set_window_at(struct client *, u_int);
|
||||
|
Reference in New Issue
Block a user