diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-10 17:16:25 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-10 17:16:25 +0000 |
commit | 2f7e182abd2f1598516d059288987813c8f7efb2 (patch) | |
tree | 069442bf7fb5949abf96365a80646e425f10233d /usr.bin/tmux/tmux.h | |
parent | f28e0674b7722428f7f9626a0d45444001b964d8 (diff) |
Permit options such as status-bg to be configured using the entire 256 colour
palette by setting "colour0" to "colour255".
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 8d4b10cc85d..06152be4145 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.101 2009/09/07 21:01:50 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.102 2009/09/10 17:16:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1486,7 +1486,9 @@ void input_key(struct window_pane *, int); void input_mouse(struct window_pane *, u_char, u_char, u_char); /* colour.c */ -const char *colour_tostring(u_char); +void colour_set_fg(struct grid_cell *, int); +void colour_set_bg(struct grid_cell *, int); +const char *colour_tostring(int); int colour_fromstring(const char *); u_char colour_256to16(u_char); u_char colour_256to88(u_char); |