$ tmux The tmux terminal has been launched: We will split the one opened pane of the tmux into two different panes in the ratio of 1:1. To make the pane split vertically first, use the shortcut of theCtrl+band thenSHIFT+”: When the screen is split into two equal parts, press the...
size:(NSSize)size layout:(NSString *)layout affinities:(NSArray *)affinities { NSNumber *n = [NSNumber numberWithInt:windowIndex]; if ([pendingWindowOpens_ containsObject:n]) { return; } for (NSString *a in affinities) { [affinities_ setValue:a equalToValue:[NSString stringWithInt...
* need to redraw the panes. */ sy1 = &wp->cached_style; sy2 = &wp->cached_active_style; if (!style_equal(sy1, sy2)) wp->flags |= PANE_REDRAW; else { c1 = window_pane_get_palette(wp, sy1->gc.fg); c2 = window_pane_get_palette(wp, sy2->gc.fg); ...
void layout_set_size(struct layout_cell *, u_int, u_int, u_int, u_int); void layout_make_leaf(struct layout_cell *, struct window_pane *); void layout_make_node(struct layout_cell *, enum layout_type); void layout_fix_offsets(struct layout_cell *); void layout_fix_panes(struct...
cpei-avalara/tmuxPublic forked fromtmux/tmux Notifications Fork0 Star0 Code Pull requests Actions Projects Security Insights Additional navigation options Files master grid-view.c grid.c hooks.c input-keys.c input.c job.c key-bindings.c
if ((u_int)cy > screen_size_y(s) - 1) cy = screen_size_y(s) - 1; s->cy = cy; } if (wp == NULL) return; w = wp->window; if (!event_initialized(&w->offset_timer)) evtimer_set(&w->offset_timer, screen_write_offset_timer, w); if (!evtimer_pending(&w->offset_tim...
if ((u_int)cy > screen_size_y(s) - 1) cy = screen_size_y(s) - 1; s->cy = cy; }if (wp == NULL) return; w = wp->window;if (!event_initialized(&w->offset_timer)) evtimer_set(&w->offset_timer, screen_write_offset_timer, w); ...
+ if (xx >= gd->linedata[yy].cellsize) + break; + grid_clear_cell_bce(gd, xx, yy, bg); + } + } +} + /* Clear lines. This just frees and truncates the lines. */ void grid_clear_lines(struct grid *gd, u_int py, u_int ny) ...
bg) != -1 || style_equal(&grid_default_cell, &wp->colgc)) wp->flags |= PANE_REDRAW; }struct window_pane * window_get_active_at(struct window *w, u_int x, u_int y) { struct window_pane *wp;TAILQ_FOREACH(wp, &w->panes, entry) { if (!window_pane_visible(wp))...
* need to redraw the panes. */ gc1 = &wp->cached_gc; gc2 = &wp->cached_active_gc; if (!grid_cells_look_equal(gc1, gc2)) wp->flags |= PANE_REDRAW; else { c1 = window_pane_get_palette(wp, gc1->fg); c2 = window_pane_get_palette(wp, gc2->fg); ...