mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Merge branch 'master' of github.com:tmux/tmux
This commit is contained in:
commit
1fbb7f1a41
2
grid.c
2
grid.c
@ -90,7 +90,7 @@ grid_clear_cell(struct grid *gd, u_int px, u_int py, u_int bg)
|
||||
struct grid_cell_entry *gce = &gl->celldata[px];
|
||||
struct grid_cell *gc;
|
||||
|
||||
memcpy(gce, &grid_default_cell, sizeof *gce);
|
||||
memcpy(gce, &grid_default_entry, sizeof *gce);
|
||||
if (bg & COLOUR_FLAG_RGB) {
|
||||
gc = grid_extended_cell(gl, gce, &grid_default_cell);
|
||||
gc->bg = bg;
|
||||
|
10
tmux.1
10
tmux.1
@ -3146,6 +3146,11 @@ see the
|
||||
.Ic message-command-style
|
||||
option.
|
||||
.Pp
|
||||
.It Xo Ic wrap-search
|
||||
.Op Ic on | off
|
||||
.Xc
|
||||
If this option is set, searches will wrap around the end of the pane contents.
|
||||
The default is on.
|
||||
.It Xo Ic xterm-keys
|
||||
.Op Ic on | off
|
||||
.Xc
|
||||
@ -3157,11 +3162,6 @@ function key sequences; these have a number included to indicate modifiers such
|
||||
as Shift, Alt or Ctrl.
|
||||
The default is off.
|
||||
.Pp
|
||||
.It Xo Ic wrap-search
|
||||
.Op Ic on | off
|
||||
.Xc
|
||||
If this option is set, searches will wrap around the end of the pane contents.
|
||||
The default is on.
|
||||
.El
|
||||
.It Xo Ic show-options
|
||||
.Op Fl gqsvw
|
||||
|
Loading…
Reference in New Issue
Block a user