Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2025-11-03 09:57:35 +00:00
10 changed files with 152 additions and 74 deletions

View File

@@ -77,6 +77,8 @@ cmd_swap_window_exec(struct cmd *self, struct cmdq_item *item)
wl_src->window = w_dst;
TAILQ_INSERT_TAIL(&w_dst->winlinks, wl_src, wentry);
if (marked_pane.wl == wl_src)
marked_pane.wl = wl_dst;
if (args_has(args, 'd')) {
session_select(dst, wl_dst->idx);
if (src != dst)

View File

@@ -262,6 +262,12 @@ environ_for_session(struct session *s, int no_TERM)
environ_set(env, "TERM", 0, "%s", value);
environ_set(env, "TERM_PROGRAM", 0, "%s", "tmux");
environ_set(env, "TERM_PROGRAM_VERSION", 0, "%s", getversion());
environ_set(env, "COLORTERM", 0, "truecolor");
} else {
environ_unset(env, "TERM");
environ_unset(env, "TERM_PROGRAM");
environ_unset(env, "TERM_PROGRAM_VERSION");
environ_unset(env, "COLORTERM");
}
#ifdef HAVE_SYSTEMD

18
file.c
View File

@@ -41,13 +41,21 @@ RB_GENERATE(client_files, client_file, entry, file_cmp);
static char *
file_get_path(struct client *c, const char *file)
{
char *path;
const char *home;
char *path, *full_path;
if (*file == '/')
if (strncmp(file, "~/", 2) != 0)
path = xstrdup(file);
else
xasprintf(&path, "%s/%s", server_client_get_cwd(c, NULL), file);
return (path);
else {
home = find_home();
if (home == NULL)
home = "";
xasprintf(&path, "%s%s", home, file + 1);
}
if (*path == '/')
return (path);
xasprintf(&full_path, "%s/%s", server_client_get_cwd(c, NULL), path);
return (full_path);
}
/* Tree comparison function. */

View File

@@ -2145,11 +2145,9 @@ screen_write_combine(struct screen_write_ctx *ctx, const struct grid_cell *gc)
case HANGULJAMO_STATE_COMPOSABLE:
break;
case HANGULJAMO_STATE_NOT_HANGULJAMO:
if (utf8_is_modifier(ud)) {
if (last.data.size < 2)
return (0);
if (utf8_should_combine(&last.data, ud))
force_wide = 1;
} else if (!utf8_has_zwj(&last.data))
else if (!utf8_has_zwj(&last.data))
return (0);
break;
}

View File

@@ -287,6 +287,8 @@ server_link_window(struct session *src, struct winlink *srcwl,
if (dstwl == NULL)
return (-1);
if (marked_pane.wl == srcwl)
marked_pane.wl = dstwl;
if (selectflag)
session_select(dst, dstwl->idx);
server_redraw_session_group(dst);

2
tmux.1
View File

@@ -599,7 +599,7 @@ This is called line continuation and applies both inside and outside quoted
strings and in comments, but not inside braces.
.Pp
Command arguments may be specified as strings surrounded by single (\[aq])
quotes, double quotes (\[dq]) or braces ({}).
quotes or double quotes (\[dq]), or as command lists surrounded by braces ({}).
.\" "
This is required when the argument contains any special character.
Single and double quoted strings cannot span multiple lines except with line

3
tmux.h
View File

@@ -3552,7 +3552,8 @@ struct event_base *osdep_event_init(void);
int utf8_has_zwj(const struct utf8_data *);
int utf8_is_zwj(const struct utf8_data *);
int utf8_is_vs(const struct utf8_data *);
int utf8_is_modifier(const struct utf8_data *);
int utf8_should_combine(const struct utf8_data *,
const struct utf8_data *);
enum hanguljamo_state hanguljamo_check_state(const struct utf8_data *,
const struct utf8_data *);

View File

@@ -535,6 +535,7 @@ tty_term_create(struct tty *tty, char *name, char **caps, u_int ncaps,
size_t offset, namelen;
char *first;
int n;
struct environ_entry *envent;
log_debug("adding term %s", name);
@@ -603,6 +604,16 @@ tty_term_create(struct tty *tty, char *name, char **caps, u_int ncaps,
(NCURSES_VERSION_MAJOR == 5 && NCURSES_VERSION_MINOR > 6)
del_curterm(cur_term);
#endif
/* Check for COLORTERM. */
envent = environ_find(tty->client->environ, "COLORTERM");
if (envent != NULL) {
log_debug("%s COLORTERM=%s", tty->client->name, envent->value);
if (strcasecmp(envent->value, "truecolor") == 0 ||
strcasecmp(envent->value, "24bit") == 0)
tty_add_features(feat, "RGB", ",");
else if (strstr(s, "256") != NULL)
tty_add_features(feat, "256", ",");
}
/* Apply overrides so any capabilities used for features are changed. */
tty_term_apply_overrides(term);

View File

@@ -73,49 +73,99 @@ utf8_is_vs(const struct utf8_data *ud)
return (memcmp(ud->data, "\357\270\217", 3) == 0);
}
/* Is this in the modifier table? */
/* Should these two characters combine? */
int
utf8_is_modifier(const struct utf8_data *ud)
utf8_should_combine(const struct utf8_data *with, const struct utf8_data *add)
{
wchar_t wc;
wchar_t w, a;
if (utf8_towc(ud, &wc) != UTF8_DONE)
if (utf8_towc(with, &w) != UTF8_DONE)
return (0);
switch (wc) {
case 0x1F1E6:
case 0x1F1E7:
case 0x1F1E8:
case 0x1F1E9:
case 0x1F1EA:
case 0x1F1EB:
case 0x1F1EC:
case 0x1F1ED:
case 0x1F1EE:
case 0x1F1EF:
case 0x1F1F0:
case 0x1F1F1:
case 0x1F1F2:
case 0x1F1F3:
case 0x1F1F4:
case 0x1F1F5:
case 0x1F1F6:
case 0x1F1F7:
case 0x1F1F8:
case 0x1F1F9:
case 0x1F1FA:
case 0x1F1FB:
case 0x1F1FC:
case 0x1F1FD:
case 0x1F1FE:
case 0x1F1FF:
case 0x1F3FB:
case 0x1F3FC:
case 0x1F3FD:
case 0x1F3FE:
case 0x1F3FF:
if (utf8_towc(add, &a) != UTF8_DONE)
return (0);
/* Regional indicators. */
if ((a >= 0x1F1E6 && a <= 0x1F1FF) && (w >= 0x1F1E6 && w <= 0x1F1FF))
return (1);
/* Emoji skin tone modifiers. */
switch (a) {
case 0x1F44B:
case 0x1F44C:
case 0x1F44D:
case 0x1F44E:
case 0x1F44F:
case 0x1F450:
case 0x1F466:
case 0x1F467:
case 0x1F468:
case 0x1F469:
case 0x1F46E:
case 0x1F470:
case 0x1F471:
case 0x1F472:
case 0x1F473:
case 0x1F474:
case 0x1F475:
case 0x1F476:
case 0x1F477:
case 0x1F478:
case 0x1F47C:
case 0x1F481:
case 0x1F482:
case 0x1F485:
case 0x1F486:
case 0x1F487:
case 0x1F4AA:
case 0x1F575:
case 0x1F57A:
case 0x1F590:
case 0x1F595:
case 0x1F596:
case 0x1F645:
case 0x1F646:
case 0x1F647:
case 0x1F64B:
case 0x1F64C:
case 0x1F64D:
case 0x1F64E:
case 0x1F64F:
case 0x1F6B4:
case 0x1F6B5:
case 0x1F6B6:
case 0x1F926:
case 0x1F937:
case 0x1F938:
case 0x1F939:
case 0x1F93D:
case 0x1F93E:
case 0x1F9B5:
case 0x1F9B6:
case 0x1F9B8:
case 0x1F9B9:
case 0x1F9CD:
case 0x1F9CE:
case 0x1F9CF:
case 0x1F9D1:
case 0x1F9D2:
case 0x1F9D3:
case 0x1F9D4:
case 0x1F9D5:
case 0x1F9D6:
case 0x1F9D7:
case 0x1F9D8:
case 0x1F9D9:
case 0x1F9DA:
case 0x1F9DB:
case 0x1F9DC:
case 0x1F9DD:
case 0x1F9DE:
case 0x1F9DF:
if (w >= 0x1F3FB && w <= 0x1F3FF)
return (1);
break;
}
return (0);
return 0;
}
static enum hanguljamo_subclass

52
utf8.c
View File

@@ -57,32 +57,32 @@ static struct utf8_width_item utf8_default_width_cache[] = {
{ .wc = 0x0270B, .width = 2 },
{ .wc = 0x0270C, .width = 2 },
{ .wc = 0x0270D, .width = 2 },
{ .wc = 0x1F1E6, .width = 2 },
{ .wc = 0x1F1E7, .width = 2 },
{ .wc = 0x1F1E8, .width = 2 },
{ .wc = 0x1F1E9, .width = 2 },
{ .wc = 0x1F1EA, .width = 2 },
{ .wc = 0x1F1EB, .width = 2 },
{ .wc = 0x1F1EC, .width = 2 },
{ .wc = 0x1F1ED, .width = 2 },
{ .wc = 0x1F1EE, .width = 2 },
{ .wc = 0x1F1EF, .width = 2 },
{ .wc = 0x1F1F0, .width = 2 },
{ .wc = 0x1F1F1, .width = 2 },
{ .wc = 0x1F1F2, .width = 2 },
{ .wc = 0x1F1F3, .width = 2 },
{ .wc = 0x1F1F4, .width = 2 },
{ .wc = 0x1F1F5, .width = 2 },
{ .wc = 0x1F1F6, .width = 2 },
{ .wc = 0x1F1F7, .width = 2 },
{ .wc = 0x1F1F8, .width = 2 },
{ .wc = 0x1F1F9, .width = 2 },
{ .wc = 0x1F1FA, .width = 2 },
{ .wc = 0x1F1FB, .width = 2 },
{ .wc = 0x1F1FC, .width = 2 },
{ .wc = 0x1F1FD, .width = 2 },
{ .wc = 0x1F1FE, .width = 2 },
{ .wc = 0x1F1FF, .width = 2 },
{ .wc = 0x1F1E6, .width = 1 },
{ .wc = 0x1F1E7, .width = 1 },
{ .wc = 0x1F1E8, .width = 1 },
{ .wc = 0x1F1E9, .width = 1 },
{ .wc = 0x1F1EA, .width = 1 },
{ .wc = 0x1F1EB, .width = 1 },
{ .wc = 0x1F1EC, .width = 1 },
{ .wc = 0x1F1ED, .width = 1 },
{ .wc = 0x1F1EE, .width = 1 },
{ .wc = 0x1F1EF, .width = 1 },
{ .wc = 0x1F1F0, .width = 1 },
{ .wc = 0x1F1F1, .width = 1 },
{ .wc = 0x1F1F2, .width = 1 },
{ .wc = 0x1F1F3, .width = 1 },
{ .wc = 0x1F1F4, .width = 1 },
{ .wc = 0x1F1F5, .width = 1 },
{ .wc = 0x1F1F6, .width = 1 },
{ .wc = 0x1F1F7, .width = 1 },
{ .wc = 0x1F1F8, .width = 1 },
{ .wc = 0x1F1F9, .width = 1 },
{ .wc = 0x1F1FA, .width = 1 },
{ .wc = 0x1F1FB, .width = 1 },
{ .wc = 0x1F1FC, .width = 1 },
{ .wc = 0x1F1FD, .width = 1 },
{ .wc = 0x1F1FE, .width = 1 },
{ .wc = 0x1F1FF, .width = 1 },
{ .wc = 0x1F385, .width = 2 },
{ .wc = 0x1F3C2, .width = 2 },
{ .wc = 0x1F3C3, .width = 2 },