mirror of
https://github.com/tmux/tmux.git
synced 2024-11-16 01:18:52 +00:00
Calculate y properly.
This commit is contained in:
parent
22ef1a1379
commit
631a45ecb5
1
TODO
1
TODO
@ -36,7 +36,6 @@
|
|||||||
-- For 0.5 --------------------------------------------------------------------
|
-- For 0.5 --------------------------------------------------------------------
|
||||||
|
|
||||||
- audit for leftover/unused code
|
- audit for leftover/unused code
|
||||||
21:09 < merdely> NicM: if I run 'tmux attach -t main' and there is no tmux session named main, start a new one.
|
|
||||||
- commands: save-buffer -b number filename
|
- commands: save-buffer -b number filename
|
||||||
load-buffer -b number filename
|
load-buffer -b number filename
|
||||||
copy-buffer -s src-session -t dst-session
|
copy-buffer -s src-session -t dst-session
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: grid-view.c,v 1.2 2008-09-26 06:45:26 nicm Exp $ */
|
/* $Id: grid-view.c,v 1.3 2008-09-28 20:34:22 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -177,6 +177,7 @@ grid_view_insert_cells(struct grid_data *gd, u_int px, u_int py, u_int nx)
|
|||||||
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx);
|
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx);
|
||||||
|
|
||||||
px = grid_view_x(gd, px);
|
px = grid_view_x(gd, px);
|
||||||
|
py = grid_view_y(gd, py);
|
||||||
|
|
||||||
sx = grid_view_x(gd, gd->sx);
|
sx = grid_view_x(gd, gd->sx);
|
||||||
|
|
||||||
@ -192,6 +193,7 @@ grid_view_delete_cells(struct grid_data *gd, u_int px, u_int py, u_int nx)
|
|||||||
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx);
|
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx);
|
||||||
|
|
||||||
px = grid_view_x(gd, px);
|
px = grid_view_x(gd, px);
|
||||||
|
py = grid_view_y(gd, py);
|
||||||
|
|
||||||
sx = grid_view_x(gd, gd->sx);
|
sx = grid_view_x(gd, gd->sx);
|
||||||
|
|
||||||
|
3
grid.c
3
grid.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: grid.c,v 1.2 2008-09-26 06:45:26 nicm Exp $ */
|
/* $Id: grid.c,v 1.3 2008-09-28 20:34:22 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -336,6 +336,7 @@ grid_move_cells(struct grid_data *gd, u_int dx, u_int px, u_int py, u_int nx)
|
|||||||
|
|
||||||
grid_check_x(gd, px);
|
grid_check_x(gd, px);
|
||||||
grid_check_x(gd, px + nx - 1);
|
grid_check_x(gd, px + nx - 1);
|
||||||
|
grid_check_x(gd, dx + nx - 1);
|
||||||
grid_check_y(gd, py);
|
grid_check_y(gd, py);
|
||||||
|
|
||||||
grid_expand_line(gd, py, px + nx);
|
grid_expand_line(gd, py, px + nx);
|
||||||
|
Loading…
Reference in New Issue
Block a user