Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2017-01-05 10:01:11 +00:00
commit 58642011df
6 changed files with 119 additions and 49 deletions

View File

@ -275,7 +275,6 @@ cmdq_format(struct cmdq_item *item, const char *key, const char *fmt, ...)
free(value); free(value);
} }
/* Process next item on command queue. */ /* Process next item on command queue. */
u_int u_int
cmdq_next(struct client *c) cmdq_next(struct client *c)

View File

@ -142,7 +142,7 @@ key_string_get_modifiers(const char **string)
break; break;
default: default:
*string = NULL; *string = NULL;
return 0; return (0);
} }
*string += 2; *string += 2;
} }

View File

@ -392,12 +392,13 @@ screen_write_cnputs(struct screen_write_ctx *ctx, ssize_t maxlen,
/* Copy from another screen. */ /* Copy from another screen. */
void void
screen_write_copy(struct screen_write_ctx *ctx, struct screen *src, u_int px, screen_write_copy(struct screen_write_ctx *ctx, struct screen *src, u_int px,
u_int py, u_int nx, u_int ny) u_int py, u_int nx, u_int ny, bitstr_t *markbs,
const struct grid_cell *markgc)
{ {
struct screen *s = ctx->s; struct screen *s = ctx->s;
struct grid *gd = src->grid; struct grid *gd = src->grid;
struct grid_cell gc; struct grid_cell gc;
u_int xx, yy, cx, cy; u_int xx, yy, cx, cy, b;
cx = s->cx; cx = s->cx;
cy = s->cy; cy = s->cy;
@ -405,6 +406,14 @@ screen_write_copy(struct screen_write_ctx *ctx, struct screen *src, u_int px,
for (yy = py; yy < py + ny; yy++) { for (yy = py; yy < py + ny; yy++) {
for (xx = px; xx < px + nx; xx++) { for (xx = px; xx < px + nx; xx++) {
grid_get_cell(gd, xx, yy, &gc); grid_get_cell(gd, xx, yy, &gc);
if (markbs != NULL) {
b = (yy * screen_size_x(src)) + xx;
if (bit_test(markbs, b)) {
gc.attr = markgc->attr;
gc.fg = markgc->fg;
gc.bg = markgc->bg;
}
}
screen_write_cell(ctx, &gc); screen_write_cell(ctx, &gc);
} }

View File

@ -475,7 +475,8 @@ draw:
/* Copy the window list. */ /* Copy the window list. */
c->wlmouse = -wloffset + wlstart; c->wlmouse = -wloffset + wlstart;
screen_write_cursormove(&ctx, wloffset, 0); screen_write_cursormove(&ctx, wloffset, 0);
screen_write_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1); screen_write_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1, NULL,
NULL);
screen_free(&window_list); screen_free(&window_list);
screen_write_stop(&ctx); screen_write_stop(&ctx);

2
tmux.h
View File

@ -2013,7 +2013,7 @@ void screen_write_vnputs(struct screen_write_ctx *, ssize_t,
void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *, void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *,
u_char); u_char);
void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int, void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int,
u_int, u_int, u_int); u_int, u_int, u_int, bitstr_t *, const struct grid_cell *);
void screen_write_backspace(struct screen_write_ctx *); void screen_write_backspace(struct screen_write_ctx *);
void screen_write_mode_set(struct screen_write_ctx *, int); void screen_write_mode_set(struct screen_write_ctx *, int);
void screen_write_mode_clear(struct screen_write_ctx *, int); void screen_write_mode_clear(struct screen_write_ctx *, int);

View File

@ -49,16 +49,15 @@ static int window_copy_search_lr(struct grid *, struct grid *, u_int *,
u_int, u_int, u_int, int); u_int, u_int, u_int, int);
static int window_copy_search_rl(struct grid *, struct grid *, u_int *, static int window_copy_search_rl(struct grid *, struct grid *, u_int *,
u_int, u_int, u_int, int); u_int, u_int, u_int, int);
static int window_copy_search_marks(struct window_pane *, struct screen *);
static void window_copy_move_left(struct screen *, u_int *, u_int *); static void window_copy_move_left(struct screen *, u_int *, u_int *);
static void window_copy_move_right(struct screen *, u_int *, u_int *); static void window_copy_move_right(struct screen *, u_int *, u_int *);
static int window_copy_is_lowercase(const char *); static int window_copy_is_lowercase(const char *);
static void window_copy_search_jump(struct window_pane *, struct grid *, static void window_copy_search_jump(struct window_pane *, struct grid *,
struct grid *, u_int, u_int, u_int, int, int, int); struct grid *, u_int, u_int, u_int, int, int, int);
static void window_copy_search(struct window_pane *, const char *, int, static void window_copy_search(struct window_pane *, int, int);
int); static void window_copy_search_up(struct window_pane *, int);
static void window_copy_search_up(struct window_pane *, const char *, int); static void window_copy_search_down(struct window_pane *, int);
static void window_copy_search_down(struct window_pane *, const char *,
int);
static void window_copy_goto_line(struct window_pane *, const char *); static void window_copy_goto_line(struct window_pane *, const char *);
static void window_copy_update_cursor(struct window_pane *, u_int, u_int); static void window_copy_update_cursor(struct window_pane *, u_int, u_int);
static void window_copy_start_selection(struct window_pane *); static void window_copy_start_selection(struct window_pane *);
@ -173,6 +172,7 @@ struct window_copy_mode_data {
int searchtype; int searchtype;
char *searchstr; char *searchstr;
bitstr_t *searchmark;
int jumptype; int jumptype;
char jumpchar; char jumpchar;
@ -185,6 +185,7 @@ window_copy_init(struct window_pane *wp)
struct screen *s; struct screen *s;
wp->modedata = data = xmalloc(sizeof *data); wp->modedata = data = xmalloc(sizeof *data);
data->oy = 0; data->oy = 0;
data->cx = 0; data->cx = 0;
data->cy = 0; data->cy = 0;
@ -201,6 +202,7 @@ window_copy_init(struct window_pane *wp)
data->searchtype = WINDOW_COPY_OFF; data->searchtype = WINDOW_COPY_OFF;
data->searchstr = NULL; data->searchstr = NULL;
data->searchmark = NULL;
if (wp->fd != -1) if (wp->fd != -1)
bufferevent_disable(wp->event, EV_READ|EV_WRITE); bufferevent_disable(wp->event, EV_READ|EV_WRITE);
@ -261,6 +263,7 @@ window_copy_free(struct window_pane *wp)
if (wp->fd != -1) if (wp->fd != -1)
bufferevent_enable(wp->event, EV_READ|EV_WRITE); bufferevent_enable(wp->event, EV_READ|EV_WRITE);
free(data->searchmark);
free(data->searchstr); free(data->searchstr);
if (data->backing != &wp->base) { if (data->backing != &wp->base) {
@ -333,7 +336,7 @@ window_copy_pageup(struct window_pane *wp, int half_page)
{ {
struct window_copy_mode_data *data = wp->modedata; struct window_copy_mode_data *data = wp->modedata;
struct screen *s = &data->screen; struct screen *s = &data->screen;
u_int n, ox, oy; u_int n, ox, oy, px, py;
oy = screen_hsize(data->backing) + data->cy - data->oy; oy = screen_hsize(data->backing) + data->cy - data->oy;
ox = window_copy_find_length(wp, oy); ox = window_copy_find_length(wp, oy);
@ -361,9 +364,10 @@ window_copy_pageup(struct window_pane *wp, int half_page)
data->oy += n; data->oy += n;
if (!data->screen.sel.flag || !data->rectflag) { if (!data->screen.sel.flag || !data->rectflag) {
u_int py = screen_hsize(data->backing) + data->cy - data->oy; py = screen_hsize(data->backing) + data->cy - data->oy;
u_int px = window_copy_find_length(wp, py); px = window_copy_find_length(wp, py);
if ((data->cx >= data->lastsx && data->cx != px) || data->cx > px) if ((data->cx >= data->lastsx && data->cx != px) ||
data->cx > px)
window_copy_cursor_end_of_line(wp); window_copy_cursor_end_of_line(wp);
} }
@ -481,6 +485,9 @@ window_copy_resize(struct window_pane *wp, u_int sx, u_int sy)
window_copy_write_lines(wp, &ctx, 0, screen_size_y(s) - 1); window_copy_write_lines(wp, &ctx, 0, screen_size_y(s) - 1);
screen_write_stop(&ctx); screen_write_stop(&ctx);
if (data->searchmark != NULL)
window_copy_search_marks(wp, NULL);
window_copy_redraw_screen(wp); window_copy_redraw_screen(wp);
} }
@ -498,8 +505,9 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
{ {
struct window_copy_mode_data *data = wp->modedata; struct window_copy_mode_data *data = wp->modedata;
struct screen *sn = &data->screen; struct screen *sn = &data->screen;
const char *command, *argument, *ws, *ss; const char *command, *argument, *ws;
u_int np = wp->modeprefix; u_int np = wp->modeprefix;
int cancel = 0;
if (args->argc == 0) if (args->argc == 0)
return; return;
@ -520,7 +528,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
window_copy_append_selection(wp, NULL); window_copy_append_selection(wp, NULL);
window_copy_clear_selection(wp); window_copy_clear_selection(wp);
window_copy_redraw_screen(wp); window_copy_redraw_screen(wp);
window_pane_reset_mode(wp); cancel = 1;
} }
if (strcmp(command, "back-to-indentation") == 0) if (strcmp(command, "back-to-indentation") == 0)
window_copy_cursor_back_to_indentation(wp); window_copy_cursor_back_to_indentation(wp);
@ -542,7 +550,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
window_copy_redraw_screen(wp); window_copy_redraw_screen(wp);
} }
if (strcmp(command, "cancel") == 0) if (strcmp(command, "cancel") == 0)
window_pane_reset_mode(wp); cancel = 1;
if (strcmp(command, "clear-selection") == 0) { if (strcmp(command, "clear-selection") == 0) {
window_copy_clear_selection(wp); window_copy_clear_selection(wp);
window_copy_redraw_screen(wp); window_copy_redraw_screen(wp);
@ -556,7 +564,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
if (s != NULL) { if (s != NULL) {
window_copy_copy_selection(wp, NULL); window_copy_copy_selection(wp, NULL);
window_pane_reset_mode(wp); cancel = 1;
} }
} }
if (strcmp(command, "copy-line") == 0) { if (strcmp(command, "copy-line") == 0) {
@ -569,7 +577,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
if (s != NULL) { if (s != NULL) {
window_copy_copy_selection(wp, NULL); window_copy_copy_selection(wp, NULL);
window_pane_reset_mode(wp); cancel = 1;
} }
} }
if (strcmp(command, "copy-selection") == 0) { if (strcmp(command, "copy-selection") == 0) {
@ -583,7 +591,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
window_copy_copy_selection(wp, NULL); window_copy_copy_selection(wp, NULL);
window_copy_clear_selection(wp); window_copy_clear_selection(wp);
window_copy_redraw_screen(wp); window_copy_redraw_screen(wp);
window_pane_reset_mode(wp); cancel = 1;
} }
if (strcmp(command, "cursor-down") == 0) { if (strcmp(command, "cursor-down") == 0) {
for (; np != 0; np--) for (; np != 0; np--)
@ -726,30 +734,28 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
for (; np != 0; np--) for (; np != 0; np--)
window_copy_cursor_down(wp, 1); window_copy_cursor_down(wp, 1);
if (data->scroll_exit && data->oy == 0) if (data->scroll_exit && data->oy == 0)
window_pane_reset_mode(wp); cancel = 1;
} }
if (strcmp(command, "scroll-up") == 0) { if (strcmp(command, "scroll-up") == 0) {
for (; np != 0; np--) for (; np != 0; np--)
window_copy_cursor_up(wp, 1); window_copy_cursor_up(wp, 1);
} }
if (strcmp(command, "search-again") == 0) { if (strcmp(command, "search-again") == 0) {
ss = data->searchstr;
if (data->searchtype == WINDOW_COPY_SEARCHUP) { if (data->searchtype == WINDOW_COPY_SEARCHUP) {
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_up(wp, ss, 1); window_copy_search_up(wp, 1);
} else if (data->searchtype == WINDOW_COPY_SEARCHDOWN) { } else if (data->searchtype == WINDOW_COPY_SEARCHDOWN) {
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_down(wp, ss, 1); window_copy_search_down(wp, 1);
} }
} }
if (strcmp(command, "search-reverse") == 0) { if (strcmp(command, "search-reverse") == 0) {
ss = data->searchstr;
if (data->searchtype == WINDOW_COPY_SEARCHUP) { if (data->searchtype == WINDOW_COPY_SEARCHUP) {
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_down(wp, ss, 1); window_copy_search_down(wp, 1);
} else if (data->searchtype == WINDOW_COPY_SEARCHDOWN) { } else if (data->searchtype == WINDOW_COPY_SEARCHDOWN) {
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_up(wp, ss, 1); window_copy_search_up(wp, 1);
} }
} }
if (strcmp(command, "select-line") == 0) { if (strcmp(command, "select-line") == 0) {
@ -788,7 +794,7 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
if (strcmp(command, "copy-pipe-and-cancel") == 0) { if (strcmp(command, "copy-pipe-and-cancel") == 0) {
if (s != NULL) { if (s != NULL) {
window_copy_copy_pipe(wp, s, NULL, argument); window_copy_copy_pipe(wp, s, NULL, argument);
window_pane_reset_mode(wp); cancel = 1;
} }
} }
if (strcmp(command, "goto-line") == 0) if (strcmp(command, "goto-line") == 0)
@ -821,16 +827,24 @@ window_copy_command(struct window_pane *wp, struct client *c, struct session *s,
data->searchtype = WINDOW_COPY_SEARCHUP; data->searchtype = WINDOW_COPY_SEARCHUP;
data->searchstr = xstrdup(argument); data->searchstr = xstrdup(argument);
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_up(wp, data->searchstr, 1); window_copy_search_up(wp, 1);
} }
if (strcmp(command, "search-forward") == 0) { if (strcmp(command, "search-forward") == 0) {
data->searchtype = WINDOW_COPY_SEARCHDOWN; data->searchtype = WINDOW_COPY_SEARCHDOWN;
data->searchstr = xstrdup(argument); data->searchstr = xstrdup(argument);
for (; np != 0; np--) for (; np != 0; np--)
window_copy_search_down(wp, data->searchstr, 1); window_copy_search_down(wp, 1);
} }
} }
if (strncmp(command, "search-", 7) != 0 && data->searchmark != NULL) {
free(data->searchmark);
data->searchmark = NULL;
window_copy_redraw_screen(wp);
}
if (cancel)
window_pane_reset_mode(wp);
wp->modeprefix = 1; wp->modeprefix = 1;
} }
@ -1016,8 +1030,7 @@ window_copy_search_jump(struct window_pane *wp, struct grid *gd,
* as well. * as well.
*/ */
static void static void
window_copy_search(struct window_pane *wp, const char *searchstr, int direction, window_copy_search(struct window_pane *wp, int direction, int moveflag)
int moveflag)
{ {
struct window_copy_mode_data *data = wp->modedata; struct window_copy_mode_data *data = wp->modedata;
struct screen *s = data->backing, ss; struct screen *s = data->backing, ss;
@ -1029,9 +1042,9 @@ window_copy_search(struct window_pane *wp, const char *searchstr, int direction,
fx = data->cx; fx = data->cx;
fy = screen_hsize(data->backing) - data->oy + data->cy; fy = screen_hsize(data->backing) - data->oy + data->cy;
screen_init(&ss, screen_write_strlen("%s", searchstr), 1, 0); screen_init(&ss, screen_write_strlen("%s", data->searchstr), 1, 0);
screen_write_start(&ctx, NULL, &ss); screen_write_start(&ctx, NULL, &ss);
screen_write_nputs(&ctx, -1, &grid_default_cell, "%s", searchstr); screen_write_nputs(&ctx, -1, &grid_default_cell, "%s", data->searchstr);
screen_write_stop(&ctx); screen_write_stop(&ctx);
if (moveflag) { if (moveflag) {
@ -1043,30 +1056,78 @@ window_copy_search(struct window_pane *wp, const char *searchstr, int direction,
window_copy_clear_selection(wp); window_copy_clear_selection(wp);
wrapflag = options_get_number(wp->window->options, "wrap-search"); wrapflag = options_get_number(wp->window->options, "wrap-search");
cis = window_copy_is_lowercase(searchstr); cis = window_copy_is_lowercase(data->searchstr);
if (direction) if (direction)
endline = gd->hsize + gd->sy - 1; endline = gd->hsize + gd->sy - 1;
else else
endline = 0; endline = 0;
window_copy_search_jump(wp, gd, ss.grid, fx, fy, endline, cis, wrapflag, window_copy_search_jump(wp, gd, ss.grid, fx, fy, endline, cis,
direction); wrapflag, direction);
if (window_copy_search_marks(wp, &ss))
window_copy_redraw_screen(wp);
screen_free(&ss); screen_free(&ss);
} }
static void static int
window_copy_search_up(struct window_pane *wp, const char *searchstr, window_copy_search_marks(struct window_pane *wp, struct screen *ssp)
int moveflag)
{ {
window_copy_search(wp, searchstr, 0, moveflag); struct window_copy_mode_data *data = wp->modedata;
struct screen *s = data->backing, ss;
struct screen_write_ctx ctx;
struct grid *gd = s->grid;
int found, cis;
u_int px, py, b, nfound = 0, width;
if (ssp == NULL) {
width = screen_write_strlen("%s", data->searchstr);
screen_init(&ss, width, 1, 0);
screen_write_start(&ctx, NULL, &ss);
screen_write_nputs(&ctx, -1, &grid_default_cell, "%s",
data->searchstr);
screen_write_stop(&ctx);
ssp = &ss;
} else
width = screen_size_x(ssp);
cis = window_copy_is_lowercase(data->searchstr);
free(data->searchmark);
data->searchmark = bit_alloc((gd->hsize + gd->sy) * gd->sx);
for (py = 0; py < gd->hsize + gd->sy; py++) {
px = 0;
for (;;) {
found = window_copy_search_lr(gd, ssp->grid, &px, py,
px, gd->sx, cis);
if (!found)
break;
nfound++;
b = (py * gd->sx) + px;
bit_nset(data->searchmark, b, b + width - 1);
px++;
}
}
if (ssp == &ss)
screen_free(&ss);
return (nfound);
} }
static void static void
window_copy_search_down(struct window_pane *wp, const char *searchstr, window_copy_search_up(struct window_pane *wp, int moveflag)
int moveflag)
{ {
window_copy_search(wp, searchstr, 1, moveflag); window_copy_search(wp, 0, moveflag);
}
static void
window_copy_search_down(struct window_pane *wp, int moveflag)
{
window_copy_search(wp, 1, moveflag);
} }
static void static void
@ -1094,7 +1155,7 @@ window_copy_write_line(struct window_pane *wp, struct screen_write_ctx *ctx,
struct options *oo = wp->window->options; struct options *oo = wp->window->options;
struct grid_cell gc; struct grid_cell gc;
char hdr[512]; char hdr[512];
size_t xoff = 0, size = 0; size_t size = 0;
style_apply(&gc, oo, "mode-style"); style_apply(&gc, oo, "mode-style");
@ -1109,10 +1170,10 @@ window_copy_write_line(struct window_pane *wp, struct screen_write_ctx *ctx,
size = 0; size = 0;
if (size < screen_size_x(s)) { if (size < screen_size_x(s)) {
screen_write_cursormove(ctx, xoff, py); screen_write_cursormove(ctx, 0, py);
screen_write_copy(ctx, data->backing, xoff, screen_write_copy(ctx, data->backing, 0,
(screen_hsize(data->backing) - data->oy) + py, (screen_hsize(data->backing) - data->oy) + py,
screen_size_x(s) - size, 1); screen_size_x(s) - size, 1, data->searchmark, &gc);
} }
if (py == data->cy && data->cx == screen_size_x(s)) { if (py == data->cy && data->cx == screen_size_x(s)) {