mirror of
https://github.com/tmate-io/tmate.git
synced 2025-06-19 17:17:53 +02:00
Sync OpenBSD patchset 394:
Permit attributes to be turned off in #[] by prefixing with "no", for example "noblink".
This commit is contained in:
parent
8bdcc10c8f
commit
8ab3a3d9aa
@ -1,4 +1,4 @@
|
|||||||
/* $Id: screen-write.c,v 1.73 2009-09-15 23:54:57 tcunha Exp $ */
|
/* $Id: screen-write.c,v 1.74 2009-10-15 01:31:38 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -347,6 +347,10 @@ screen_write_parsestyle(
|
|||||||
bg = defgc->bg;
|
bg = defgc->bg;
|
||||||
} else
|
} else
|
||||||
return;
|
return;
|
||||||
|
} else if (end > 2 && strncasecmp(tmp, "no", 2) == 0) {
|
||||||
|
if ((val = attributes_fromstring(tmp + 2)) == -1)
|
||||||
|
return;
|
||||||
|
attr &= ~val;
|
||||||
} else {
|
} else {
|
||||||
if ((val = attributes_fromstring(tmp)) == -1)
|
if ((val = attributes_fromstring(tmp)) == -1)
|
||||||
return;
|
return;
|
||||||
|
16
tmux.1
16
tmux.1
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: tmux.1,v 1.190 2009-10-12 00:38:31 tcunha Exp $
|
.\" $Id: tmux.1,v 1.191 2009-10-15 01:31:38 tcunha Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
.\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
.\"
|
.\"
|
||||||
@ -14,7 +14,7 @@
|
|||||||
.\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
.\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||||
.\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
.\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
.\"
|
.\"
|
||||||
.Dd $Mdocdate: October 11 2009 $
|
.Dd $Mdocdate: October 12 2009 $
|
||||||
.Dt TMUX 1
|
.Dt TMUX 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -1470,22 +1470,26 @@ the
|
|||||||
.Ic status-interval
|
.Ic status-interval
|
||||||
option: if the status line is redrawn in the meantime, the previous result is
|
option: if the status line is redrawn in the meantime, the previous result is
|
||||||
used.
|
used.
|
||||||
|
.Pp
|
||||||
#[attributes] allows a comma-separated list of attributes to be specified,
|
#[attributes] allows a comma-separated list of attributes to be specified,
|
||||||
these may be
|
these may be
|
||||||
.Ql fg=colour
|
.Ql fg=colour
|
||||||
to set the foreground colour,
|
to set the foreground colour,
|
||||||
.Ql bg=colour
|
.Ql bg=colour
|
||||||
to set the background colour, or one of the attributes described under the
|
to set the background colour, the name of one of the attributes (listed under the
|
||||||
.Ic message-attr
|
.Ic message-attr
|
||||||
option.
|
option) to turn an attribute on, or an attribute prefixed with
|
||||||
|
.Ql no
|
||||||
|
to turn one off, for example
|
||||||
|
.Ic nobright .
|
||||||
Examples are:
|
Examples are:
|
||||||
.Bd -literal -offset indent
|
.Bd -literal -offset indent
|
||||||
#(sysctl vm.loadavg)
|
#(sysctl vm.loadavg)
|
||||||
#[fg=yellow,bold]#(apm -l)%%#[default] [#S]
|
#[fg=yellow,bold]#(apm -l)%%#[default] [#S]
|
||||||
.Ed
|
.Ed
|
||||||
.Pp
|
.Pp
|
||||||
Where appropriate, these may be prefixed with a number to specify the maximum
|
Where appropriate, special character sequences may be prefixed with a number to
|
||||||
length, for example
|
specify the maximum length, for example
|
||||||
.Ql #24T .
|
.Ql #24T .
|
||||||
.Pp
|
.Pp
|
||||||
By default, UTF-8 in
|
By default, UTF-8 in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user