aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--attributes.c8
-rw-r--r--format.c2
-rw-r--r--grid.c1
-rw-r--r--input.c6
-rw-r--r--tmux.13
-rw-r--r--tmux.h2
-rw-r--r--tty-term.c1
-rw-r--r--tty.c2
8 files changed, 21 insertions, 4 deletions
diff --git a/attributes.c b/attributes.c
index 1b831733..5849af2b 100644
--- a/attributes.c
+++ b/attributes.c
@@ -31,7 +31,7 @@ attributes_tostring(int attr)
if (attr == 0)
return ("none");
- len = xsnprintf(buf, sizeof buf, "%s%s%s%s%s%s%s%s%s%s%s%s",
+ len = xsnprintf(buf, sizeof buf, "%s%s%s%s%s%s%s%s%s%s%s%s%s",
(attr & GRID_ATTR_BRIGHT) ? "bright," : "",
(attr & GRID_ATTR_DIM) ? "dim," : "",
(attr & GRID_ATTR_UNDERSCORE) ? "underscore," : "",
@@ -43,7 +43,8 @@ attributes_tostring(int attr)
(attr & GRID_ATTR_UNDERSCORE_2) ? "double-underscore," : "",
(attr & GRID_ATTR_UNDERSCORE_3) ? "curly-underscore," : "",
(attr & GRID_ATTR_UNDERSCORE_4) ? "dotted-underscore," : "",
- (attr & GRID_ATTR_UNDERSCORE_5) ? "dashed-underscore," : "");
+ (attr & GRID_ATTR_UNDERSCORE_5) ? "dashed-underscore," : "",
+ (attr & GRID_ATTR_OVERLINE) ? "overline," : "");
if (len > 0)
buf[len - 1] = '\0';
@@ -73,7 +74,8 @@ attributes_fromstring(const char *str)
{ "double-underscore", GRID_ATTR_UNDERSCORE_2 },
{ "curly-underscore", GRID_ATTR_UNDERSCORE_3 },
{ "dotted-underscore", GRID_ATTR_UNDERSCORE_4 },
- { "dashed-underscore", GRID_ATTR_UNDERSCORE_5 }
+ { "dashed-underscore", GRID_ATTR_UNDERSCORE_5 },
+ { "overline", GRID_ATTR_OVERLINE }
};
if (*str == '\0' || strcspn(str, delimiters) == 0)
diff --git a/format.c b/format.c
index 3e43c4e3..b7fedaab 100644
--- a/format.c
+++ b/format.c
@@ -60,7 +60,7 @@ static void format_defaults_winlink(struct format_tree *, struct winlink *);
"Detach & Kill,X,detach-client -P|" \
"Detach Others,o,detach-client -a|" \
"|" \
- "#{?#{lock-command},Lock,},l,lock-client"
+ "Lock,l,lock-client"
#define DEFAULT_SESSION_MENU \
"Next,n,switch-client -n|" \
"Previous,p,switch-client -p|" \
diff --git a/grid.c b/grid.c
index 53751c03..aa4ae804 100644
--- a/grid.c
+++ b/grid.c
@@ -790,6 +790,7 @@ grid_string_cells_code(const struct grid_cell *lastgc,
{ GRID_ATTR_UNDERSCORE_3, 43 },
{ GRID_ATTR_UNDERSCORE_4, 44 },
{ GRID_ATTR_UNDERSCORE_5, 45 },
+ { GRID_ATTR_OVERLINE, 53 },
};
n = 0;
diff --git a/input.c b/input.c
index 285de2d2..a9f0acc9 100644
--- a/input.c
+++ b/input.c
@@ -2070,6 +2070,12 @@ input_csi_dispatch_sgr(struct input_ctx *ictx)
case 49:
gc->bg = 8;
break;
+ case 53:
+ gc->attr |= GRID_ATTR_OVERLINE;
+ break;
+ case 55:
+ gc->attr &= ~GRID_ATTR_OVERLINE;
+ break;
case 90:
case 91:
case 92:
diff --git a/tmux.1 b/tmux.1
index 3c775d43..9d2162d8 100644
--- a/tmux.1
+++ b/tmux.1
@@ -4098,6 +4098,7 @@ Set no attributes (turn off any active attributes).
.Ic reverse ,
.Ic hidden ,
.Ic italics ,
+.Ic overline ,
.Ic strikethrough ,
.Ic double-underscore ,
.Ic curly-underscore ,
@@ -4827,6 +4828,8 @@ to change the cursor colour from inside
.Bd -literal -offset indent
$ printf '\e033]12;red\e033\e\e'
.Ed
+.It Em \&Smol
+Enable the overline attribute.
.It Em \&Smulx
Set a styled underline.
The single parameter is one of: 0 for no underline, 1 for normal
diff --git a/tmux.h b/tmux.h
index 7e017ca2..e02c9a86 100644
--- a/tmux.h
+++ b/tmux.h
@@ -433,6 +433,7 @@ enum tty_code_code {
TTYC_SITM,
TTYC_SMACS,
TTYC_SMCUP,
+ TTYC_SMOL,
TTYC_SMKX,
TTYC_SMSO,
TTYC_SMULX,
@@ -570,6 +571,7 @@ enum utf8_state {
#define GRID_ATTR_UNDERSCORE_3 0x400
#define GRID_ATTR_UNDERSCORE_4 0x800
#define GRID_ATTR_UNDERSCORE_5 0x1000
+#define GRID_ATTR_OVERLINE 0x2000
/* All underscore attributes. */
#define GRID_ATTR_ALL_UNDERSCORE \
diff --git a/tty-term.c b/tty-term.c
index c458752d..b3fc8e0d 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -255,6 +255,7 @@ static const struct tty_term_code_entry tty_term_codes[] = {
[TTYC_SMACS] = { TTYCODE_STRING, "smacs" },
[TTYC_SMCUP] = { TTYCODE_STRING, "smcup" },
[TTYC_SMKX] = { TTYCODE_STRING, "smkx" },
+ [TTYC_SMOL] = { TTYCODE_STRING, "Smol" },
[TTYC_SMSO] = { TTYCODE_STRING, "smso" },
[TTYC_SMULX] = { TTYCODE_STRING, "Smulx" },
[TTYC_SMUL] = { TTYCODE_STRING, "smul" },
diff --git a/tty.c b/tty.c
index cc528e8e..34403a1f 100644
--- a/tty.c
+++ b/tty.c
@@ -2199,6 +2199,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc,
tty_putcode(tty, TTYC_INVIS);
if (changed & GRID_ATTR_STRIKETHROUGH)
tty_putcode(tty, TTYC_SMXX);
+ if (changed & GRID_ATTR_OVERLINE)
+ tty_putcode(tty, TTYC_SMOL);
if ((changed & GRID_ATTR_CHARSET) && tty_acs_needed(tty))
tty_putcode(tty, TTYC_SMACS);
}