aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-09-07 23:37:48 +0000
committerTiago Cunha <tcunha@gmx.com>2009-09-07 23:37:48 +0000
commit5edc4658028b47d975f8685be63f5876a12a3a4f (patch)
treef5da5d1098fa0a584c84c1437471f9cf56d01632 /tmux.h
parentec195a4e15995eb526015fca10a3a5d226918c0e (diff)
downloadrtmux-5edc4658028b47d975f8685be63f5876a12a3a4f.tar.gz
rtmux-5edc4658028b47d975f8685be63f5876a12a3a4f.tar.bz2
rtmux-5edc4658028b47d975f8685be63f5876a12a3a4f.zip
Sync OpenBSD patchset 317:
Permit embedded colour and attributes in status-left and status-right using new #[] special characters, for example #[fg=red,bg=blue,blink].
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index d6c58488..f4cc7b39 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.436 2009-09-03 21:02:55 tcunha Exp $ */
+/* $Id: tmux.h,v 1.437 2009-09-07 23:37:48 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1531,6 +1531,9 @@ char *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
void screen_write_start(
struct screen_write_ctx *, struct window_pane *, struct screen *);
void screen_write_stop(struct screen_write_ctx *);
+size_t printflike2 screen_write_cstrlen(int, const char *, ...);
+void printflike5 screen_write_cnputs(struct screen_write_ctx *,
+ ssize_t, struct grid_cell *, int, const char *, ...);
size_t printflike2 screen_write_strlen(int, const char *, ...);
void printflike3 screen_write_puts(struct screen_write_ctx *,
struct grid_cell *, const char *, ...);
@@ -1538,6 +1541,8 @@ void printflike5 screen_write_nputs(struct screen_write_ctx *,
ssize_t, struct grid_cell *, int, const char *, ...);
void screen_write_vnputs(struct screen_write_ctx *,
ssize_t, struct grid_cell *, int, const char *, va_list);
+void screen_write_parsestyle(
+ struct grid_cell *, struct grid_cell *, const char *);
void screen_write_putc(
struct screen_write_ctx *, struct grid_cell *, u_char);
void screen_write_copy(struct screen_write_ctx *,