mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Remove some debugging left behind.
This commit is contained in:
		@@ -815,6 +815,11 @@ static void
 | 
				
			|||||||
window_copy_formats(struct window_mode_entry *wme, struct format_tree *ft)
 | 
					window_copy_formats(struct window_mode_entry *wme, struct format_tree *ft)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct window_copy_mode_data	*data = wme->data;
 | 
						struct window_copy_mode_data	*data = wme->data;
 | 
				
			||||||
 | 
						u_int				 hsize = screen_hsize(data->backing);
 | 
				
			||||||
 | 
						struct grid_line		*gl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						gl = grid_get_line(data->backing->grid, hsize - data->oy);
 | 
				
			||||||
 | 
						format_add(ft, "top_line_time", "%llu", (unsigned long long)gl->time);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	format_add(ft, "scroll_position", "%d", data->oy);
 | 
						format_add(ft, "scroll_position", "%d", data->oy);
 | 
				
			||||||
	format_add(ft, "rectangle_toggle", "%d", data->rectflag);
 | 
						format_add(ft, "rectangle_toggle", "%d", data->rectflag);
 | 
				
			||||||
@@ -842,6 +847,7 @@ window_copy_formats(struct window_mode_entry *wme, struct format_tree *ft)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	format_add(ft, "search_present", "%d", data->searchmark != NULL);
 | 
						format_add(ft, "search_present", "%d", data->searchmark != NULL);
 | 
				
			||||||
 | 
						format_add(ft, "search_timed_out", "%d", data->timeout);
 | 
				
			||||||
	if (data->searchcount != -1) {
 | 
						if (data->searchcount != -1) {
 | 
				
			||||||
		format_add(ft, "search_count", "%d", data->searchcount);
 | 
							format_add(ft, "search_count", "%d", data->searchcount);
 | 
				
			||||||
		format_add(ft, "search_count_partial", "%d", data->searchmore);
 | 
							format_add(ft, "search_count_partial", "%d", data->searchmore);
 | 
				
			||||||
@@ -4190,11 +4196,12 @@ window_copy_write_line(struct window_mode_entry *wme,
 | 
				
			|||||||
	struct window_copy_mode_data	*data = wme->data;
 | 
						struct window_copy_mode_data	*data = wme->data;
 | 
				
			||||||
	struct screen			*s = &data->screen;
 | 
						struct screen			*s = &data->screen;
 | 
				
			||||||
	struct options			*oo = wp->window->options;
 | 
						struct options			*oo = wp->window->options;
 | 
				
			||||||
	struct grid_line		*gl;
 | 
					 | 
				
			||||||
	struct grid_cell		 gc, mgc, cgc, mkgc;
 | 
						struct grid_cell		 gc, mgc, cgc, mkgc;
 | 
				
			||||||
	char				 hdr[512], tmp[256], *t;
 | 
						u_int				 sx = screen_size_x(s);
 | 
				
			||||||
	size_t				 size = 0;
 | 
					 | 
				
			||||||
	u_int				 hsize = screen_hsize(data->backing);
 | 
						u_int				 hsize = screen_hsize(data->backing);
 | 
				
			||||||
 | 
						const char			*value;
 | 
				
			||||||
 | 
						char				*expanded;
 | 
				
			||||||
 | 
						struct format_tree		*ft;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	style_apply(&gc, oo, "mode-style", NULL);
 | 
						style_apply(&gc, oo, "mode-style", NULL);
 | 
				
			||||||
	gc.flags |= GRID_FLAG_NOPALETTE;
 | 
						gc.flags |= GRID_FLAG_NOPALETTE;
 | 
				
			||||||
@@ -4205,42 +4212,21 @@ window_copy_write_line(struct window_mode_entry *wme,
 | 
				
			|||||||
	style_apply(&mkgc, oo, "copy-mode-mark-style", NULL);
 | 
						style_apply(&mkgc, oo, "copy-mode-mark-style", NULL);
 | 
				
			||||||
	mkgc.flags |= GRID_FLAG_NOPALETTE;
 | 
						mkgc.flags |= GRID_FLAG_NOPALETTE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						window_copy_write_one(wme, ctx, py, hsize - data->oy + py,
 | 
				
			||||||
 | 
						    screen_size_x(s), &mgc, &cgc, &mkgc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (py == 0 && s->rupper < s->rlower && !data->hide_position) {
 | 
						if (py == 0 && s->rupper < s->rlower && !data->hide_position) {
 | 
				
			||||||
		gl = grid_get_line(data->backing->grid, hsize - data->oy);
 | 
							value = options_get_string(oo, "copy-mode-position-format");
 | 
				
			||||||
		if (gl->time == 0)
 | 
							if (*value != '\0') {
 | 
				
			||||||
			xsnprintf(tmp, sizeof tmp, "[%u/%u]", data->oy, hsize);
 | 
								ft = format_create_defaults(NULL, NULL, NULL, NULL, wp);
 | 
				
			||||||
		else {
 | 
								expanded = format_expand(ft, value);
 | 
				
			||||||
			t = format_pretty_time(gl->time, 1);
 | 
								if (*expanded != '\0') {
 | 
				
			||||||
			xsnprintf(tmp, sizeof tmp, "%s [%u/%u]", t, data->oy,
 | 
									screen_write_cursormove(ctx, 0, 0, 0);
 | 
				
			||||||
			    hsize);
 | 
									format_draw(ctx, &gc, sx, expanded, NULL, 0);
 | 
				
			||||||
			free(t);
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		if (data->searchmark == NULL) {
 | 
					 | 
				
			||||||
			if (data->timeout) {
 | 
					 | 
				
			||||||
				size = xsnprintf(hdr, sizeof hdr,
 | 
					 | 
				
			||||||
				    "(timed out) %s", tmp);
 | 
					 | 
				
			||||||
			} else
 | 
					 | 
				
			||||||
				size = xsnprintf(hdr, sizeof hdr, "%s", tmp);
 | 
					 | 
				
			||||||
		} else {
 | 
					 | 
				
			||||||
			if (data->searchcount == -1)
 | 
					 | 
				
			||||||
				size = xsnprintf(hdr, sizeof hdr, "%s", tmp);
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				size = xsnprintf(hdr, sizeof hdr,
 | 
					 | 
				
			||||||
				    "(%d%s results) %s", data->searchcount,
 | 
					 | 
				
			||||||
				    data->searchmore ? "+" : "", tmp);
 | 
					 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
								free(expanded);
 | 
				
			||||||
 | 
								format_free(ft);
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if (size > screen_size_x(s))
 | 
					 | 
				
			||||||
			size = screen_size_x(s);
 | 
					 | 
				
			||||||
		screen_write_cursormove(ctx, screen_size_x(s) - size, 0, 0);
 | 
					 | 
				
			||||||
		screen_write_puts(ctx, &gc, "%s", hdr);
 | 
					 | 
				
			||||||
	} else
 | 
					 | 
				
			||||||
		size = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (size < screen_size_x(s)) {
 | 
					 | 
				
			||||||
		window_copy_write_one(wme, ctx, py, hsize - data->oy + py,
 | 
					 | 
				
			||||||
		    screen_size_x(s) - size, &mgc, &cgc, &mkgc);
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (py == data->cy && data->cx == screen_size_x(s)) {
 | 
						if (py == data->cy && data->cx == screen_size_x(s)) {
 | 
				
			||||||
@@ -4673,7 +4659,8 @@ window_copy_copy_buffer(struct window_mode_entry *wme, const char *prefix,
 | 
				
			|||||||
	struct window_pane	*wp = wme->wp;
 | 
						struct window_pane	*wp = wme->wp;
 | 
				
			||||||
	struct screen_write_ctx	 ctx;
 | 
						struct screen_write_ctx	 ctx;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (set_clip && options_get_number(global_options, "set-clipboard") != 0) {
 | 
						if (set_clip &&
 | 
				
			||||||
 | 
						    options_get_number(global_options, "set-clipboard") != 0) {
 | 
				
			||||||
		screen_write_start_pane(&ctx, wp, NULL);
 | 
							screen_write_start_pane(&ctx, wp, NULL);
 | 
				
			||||||
		screen_write_setselection(&ctx, "", buf, len);
 | 
							screen_write_setselection(&ctx, "", buf, len);
 | 
				
			||||||
		screen_write_stop(&ctx);
 | 
							screen_write_stop(&ctx);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user