Skip to content

Commit

Permalink
Add copy-mode-position-style and copy-mode-selection-style for copy
Browse files Browse the repository at this point in the history
mode (they default to mode-style as before).
  • Loading branch information
nicm committed Nov 26, 2024
1 parent 67cc7f6 commit 6f7db82
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
18 changes: 18 additions & 0 deletions options-table.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,24 @@ const struct options_table_entry options_table[] = {
.text = "Format of the position indicator in copy mode."
},

{ .name = "copy-mode-position-style",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
.default_str = "#{mode-style}",
.flags = OPTIONS_TABLE_IS_STYLE,
.separator = ",",
.text = "Style of position indicator in copy mode."
},

{ .name = "copy-mode-selection-style",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
.default_str = "#{mode-style}",
.flags = OPTIONS_TABLE_IS_STYLE,
.separator = ",",
.text = "Style of selection in copy mode."
},

{ .name = "fill-character",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
Expand Down
16 changes: 16 additions & 0 deletions tmux.1
Original file line number Diff line number Diff line change
Expand Up @@ -4888,6 +4888,22 @@ or
contains
.Ql vi .
.Pp
.It Ic copy-mode-position-style Ar style
Set the style of the position indicator in copy mode.
For how to specify
.Ar style ,
see the
.Sx STYLES
section.
.Pp
.It Ic copy-mode-selection-style Ar style
Set the style of the selection in copy mode.
For how to specify
.Ar style ,
see the
.Sx STYLES
section.
.Pp
.It Ic mode-style Ar style
Set window modes style.
For how to specify
Expand Down
19 changes: 12 additions & 7 deletions window-copy.c
Original file line number Diff line number Diff line change
Expand Up @@ -4391,13 +4391,15 @@ window_copy_write_line(struct window_mode_entry *wme,
char *expanded;
struct format_tree *ft;

style_apply(&gc, oo, "mode-style", NULL);
ft = format_create_defaults(NULL, NULL, NULL, NULL, wp);

style_apply(&gc, oo, "copy-mode-position-style", ft);
gc.flags |= GRID_FLAG_NOPALETTE;
style_apply(&mgc, oo, "copy-mode-match-style", NULL);
style_apply(&mgc, oo, "copy-mode-match-style", ft);
mgc.flags |= GRID_FLAG_NOPALETTE;
style_apply(&cgc, oo, "copy-mode-current-match-style", NULL);
style_apply(&cgc, oo, "copy-mode-current-match-style", ft);
cgc.flags |= GRID_FLAG_NOPALETTE;
style_apply(&mkgc, oo, "copy-mode-mark-style", NULL);
style_apply(&mkgc, oo, "copy-mode-mark-style", ft);
mkgc.flags |= GRID_FLAG_NOPALETTE;

window_copy_write_one(wme, ctx, py, hsize - data->oy + py,
Expand All @@ -4406,21 +4408,21 @@ window_copy_write_line(struct window_mode_entry *wme,
if (py == 0 && s->rupper < s->rlower && !data->hide_position) {
value = options_get_string(oo, "copy-mode-position-format");
if (*value != '\0') {
ft = format_create_defaults(NULL, NULL, NULL, NULL, wp);
expanded = format_expand(ft, value);
if (*expanded != '\0') {
screen_write_cursormove(ctx, 0, 0, 0);
format_draw(ctx, &gc, sx, expanded, NULL, 0);
}
free(expanded);
format_free(ft);
}
}

if (py == data->cy && data->cx == screen_size_x(s)) {
screen_write_cursormove(ctx, screen_size_x(s) - 1, py, 0);
screen_write_putc(ctx, &grid_default_cell, '$');
}

format_free(ft);
}

static void
Expand Down Expand Up @@ -4668,6 +4670,7 @@ window_copy_set_selection(struct window_mode_entry *wme, int may_redraw,
struct grid_cell gc;
u_int sx, sy, cy, endsx, endsy;
int startrelpos, endrelpos;
struct format_tree *ft;

window_copy_synchronize_cursor(wme, no_reset);

Expand All @@ -4689,8 +4692,10 @@ window_copy_set_selection(struct window_mode_entry *wme, int may_redraw,
}

/* Set colours and selection. */
style_apply(&gc, oo, "mode-style", NULL);
ft = format_create_defaults(NULL, NULL, NULL, NULL, wp);
style_apply(&gc, oo, "copy-mode-selection-style", ft);
gc.flags |= GRID_FLAG_NOPALETTE;
format_free(ft);
screen_set_selection(s, sx, sy, endsx, endsy, data->rectflag,
data->modekeys, &gc);

Expand Down

0 comments on commit 6f7db82

Please sign in to comment.