mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #25281 from zeertzjq/vim-9.0.1919
vim-patch:9.0.1919: Wrong curswant when clicking on empty line or with vsplits
This commit is contained in:
commit
0aea8fad48
@ -1849,35 +1849,34 @@ static void mouse_check_grid(colnr_T *vcolp, int *flagsp)
|
||||
int click_grid = mouse_grid;
|
||||
int click_row = mouse_row;
|
||||
int click_col = mouse_col;
|
||||
int max_row = Rows;
|
||||
int max_col = Columns;
|
||||
bool multigrid = ui_has(kUIMultigrid);
|
||||
colnr_T col_from_screen = -1;
|
||||
|
||||
// XXX: this doesn't change click_grid if it is 1, even with multigrid
|
||||
win_T *wp = mouse_find_win(&click_grid, &click_row, &click_col);
|
||||
if (wp && multigrid) {
|
||||
max_row = wp->w_grid_alloc.rows;
|
||||
max_col = wp->w_grid_alloc.cols;
|
||||
}
|
||||
|
||||
if (wp && mouse_row >= 0 && mouse_row < max_row
|
||||
&& mouse_col >= 0 && mouse_col < max_col) {
|
||||
ScreenGrid *gp = multigrid ? &wp->w_grid_alloc : &default_grid;
|
||||
int use_row = multigrid && mouse_grid == 0 ? click_row : mouse_row;
|
||||
int use_col = multigrid && mouse_grid == 0 ? click_col : mouse_col;
|
||||
|
||||
if (gp->chars != NULL) {
|
||||
const size_t off = gp->line_offset[use_row] + (size_t)use_col;
|
||||
|
||||
// Only use vcols[] after the window was redrawn. Mainly matters
|
||||
// for tests, a user would not click before redrawing.
|
||||
if (wp->w_redr_type == 0) {
|
||||
col_from_screen = gp->vcols[off];
|
||||
if (wp == NULL || wp->w_redr_type != 0) {
|
||||
return;
|
||||
}
|
||||
ScreenGrid *gp = &wp->w_grid;
|
||||
int start_row = 0;
|
||||
int start_col = 0;
|
||||
grid_adjust(&gp, &start_row, &start_col);
|
||||
if (gp->handle != click_grid || gp->chars == NULL) {
|
||||
return;
|
||||
}
|
||||
click_row += start_row;
|
||||
click_col += start_col;
|
||||
if (click_row < 0 || click_row >= gp->rows
|
||||
|| click_col < 0 || click_col >= gp->cols) {
|
||||
return;
|
||||
}
|
||||
|
||||
const size_t off = gp->line_offset[click_row] + (size_t)click_col;
|
||||
colnr_T col_from_screen = gp->vcols[off];
|
||||
|
||||
if (col_from_screen == MAXCOL) {
|
||||
// When clicking after end of line, still need to set correct curswant
|
||||
size_t off_l = gp->line_offset[use_row];
|
||||
size_t off_l = gp->line_offset[click_row] + (size_t)start_col;
|
||||
if (gp->vcols[off_l] < MAXCOL) {
|
||||
// Binary search to find last char in line
|
||||
size_t off_r = off;
|
||||
@ -1889,18 +1888,21 @@ static void mouse_check_grid(colnr_T *vcolp, int *flagsp)
|
||||
off_r = off_m - 1;
|
||||
}
|
||||
}
|
||||
*vcolp = gp->vcols[off_r] + (int)(off - off_r);
|
||||
colnr_T eol_vcol = gp->vcols[off_r];
|
||||
assert(eol_vcol < MAXCOL);
|
||||
// This may be -2 or -3 with 'foldcolumn' and empty line.
|
||||
// In that case set it to -1 as it's just before start of line.
|
||||
eol_vcol = MAX(eol_vcol, -1);
|
||||
*vcolp = eol_vcol + (int)(off - off_r);
|
||||
} else {
|
||||
// Shouldn't normally happen
|
||||
*vcolp = MAXCOL;
|
||||
// Clicking on an empty line
|
||||
*vcolp = click_col - start_col;
|
||||
}
|
||||
} else if (col_from_screen >= 0) {
|
||||
// Use the virtual column from vcols[], it is accurate also after
|
||||
// concealed characters.
|
||||
*vcolp = col_from_screen;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (col_from_screen == -2) {
|
||||
*flagsp |= MOUSE_FOLD_OPEN;
|
||||
|
@ -6287,7 +6287,7 @@ describe('float window', function()
|
||||
end
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 1, 0, 0)
|
||||
meths.input_mouse('left', 'press', '', 2, 0, 0)
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
[2:----------------------------------------]|
|
||||
@ -6366,7 +6366,7 @@ describe('float window', function()
|
||||
end
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 1, 0, 0)
|
||||
meths.input_mouse('left', 'press', '', 2, 0, 0)
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
[2:----------------------------------------]|
|
||||
@ -8764,6 +8764,186 @@ describe('float window', function()
|
||||
end
|
||||
end)
|
||||
|
||||
it('left click sets correct curswant in float window with border', function()
|
||||
local buf = meths.create_buf(false,false)
|
||||
meths.buf_set_lines(buf, 0, -1, true, {'', '', ''})
|
||||
meths.open_win(buf, false, {relative='editor', width=20, height=3, row=0, col=5, border='single'})
|
||||
if multigrid then
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[3:----------------------------------------]|
|
||||
## grid 2
|
||||
^ |
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
## grid 3
|
||||
|
|
||||
## grid 4
|
||||
{5:┌────────────────────┐}|
|
||||
{5:│}{1: }{5:│}|
|
||||
{5:│}{1: }{5:│}|
|
||||
{5:│}{1: }{5:│}|
|
||||
{5:└────────────────────┘}|
|
||||
]], float_pos={
|
||||
[4] = {{id = 1001}, "NW", 1, 0, 5, true, 50};
|
||||
}, win_viewport={
|
||||
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||
[4] = {win = {id = 1001}, topline = 0, botline = 3, curline = 0, curcol = 0, linecount = 3, sum_scroll_delta = 0};
|
||||
}}
|
||||
else
|
||||
screen:expect{grid=[[
|
||||
^ {5:┌────────────────────┐} |
|
||||
{0:~ }{5:│}{1: }{5:│}{0: }|
|
||||
{0:~ }{5:│}{1: }{5:│}{0: }|
|
||||
{0:~ }{5:│}{1: }{5:│}{0: }|
|
||||
{0:~ }{5:└────────────────────┘}{0: }|
|
||||
{0:~ }|
|
||||
|
|
||||
]]}
|
||||
end
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 3, 1)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 3, 6)
|
||||
end
|
||||
eq({0, 3, 1, 0, 1}, funcs.getcurpos())
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 3, 2)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 3, 7)
|
||||
end
|
||||
eq({0, 3, 1, 0, 2}, funcs.getcurpos())
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 3, 10)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 3, 15)
|
||||
end
|
||||
eq({0, 3, 1, 0, 10}, funcs.getcurpos())
|
||||
|
||||
command('setlocal foldcolumn=1')
|
||||
feed('zfkgg')
|
||||
if multigrid then
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[3:----------------------------------------]|
|
||||
## grid 2
|
||||
|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
## grid 3
|
||||
|
|
||||
## grid 4
|
||||
{5:┌────────────────────┐}|
|
||||
{5:│}{19: }{1:^ }{5:│}|
|
||||
{5:│}{19:+}{28:+-- 2 lines: ·····}{5:│}|
|
||||
{5:│}{2:~ }{5:│}|
|
||||
{5:└────────────────────┘}|
|
||||
]], float_pos={
|
||||
[4] = {{id = 1001}, "NW", 1, 0, 5, true, 50};
|
||||
}, win_viewport={
|
||||
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||
[4] = {win = {id = 1001}, topline = 0, botline = 4, curline = 0, curcol = 0, linecount = 3, sum_scroll_delta = 0};
|
||||
}}
|
||||
else
|
||||
screen:expect{grid=[[
|
||||
{5:┌────────────────────┐} |
|
||||
{0:~ }{5:│}{19: }{1:^ }{5:│}{0: }|
|
||||
{0:~ }{5:│}{19:+}{28:+-- 2 lines: ·····}{5:│}{0: }|
|
||||
{0:~ }{5:│}{2:~ }{5:│}{0: }|
|
||||
{0:~ }{5:└────────────────────┘}{0: }|
|
||||
{0:~ }|
|
||||
|
|
||||
]]}
|
||||
end
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 2, 1)
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[2:----------------------------------------]|
|
||||
[3:----------------------------------------]|
|
||||
## grid 2
|
||||
|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
{0:~ }|
|
||||
## grid 3
|
||||
|
|
||||
## grid 4
|
||||
{5:┌────────────────────┐}|
|
||||
{5:│}{19: }{1:^ }{5:│}|
|
||||
{5:│}{19:-}{1: }{5:│}|
|
||||
{5:│}{19:│}{1: }{5:│}|
|
||||
{5:└────────────────────┘}|
|
||||
]], float_pos={
|
||||
[4] = {{id = 1001}, "NW", 1, 0, 5, true, 50};
|
||||
}, win_viewport={
|
||||
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||
[4] = {win = {id = 1001}, topline = 0, botline = 3, curline = 0, curcol = 0, linecount = 3, sum_scroll_delta = 0};
|
||||
}}
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 2, 6)
|
||||
screen:expect{grid=[[
|
||||
{5:┌────────────────────┐} |
|
||||
{0:~ }{5:│}{19: }{1:^ }{5:│}{0: }|
|
||||
{0:~ }{5:│}{19:-}{1: }{5:│}{0: }|
|
||||
{0:~ }{5:│}{19:│}{1: }{5:│}{0: }|
|
||||
{0:~ }{5:└────────────────────┘}{0: }|
|
||||
{0:~ }|
|
||||
|
|
||||
]]}
|
||||
end
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 2, 2)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 2, 7)
|
||||
end
|
||||
eq({0, 2, 1, 0, 1}, funcs.getcurpos())
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 2, 3)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 2, 8)
|
||||
end
|
||||
eq({0, 2, 1, 0, 2}, funcs.getcurpos())
|
||||
|
||||
if multigrid then
|
||||
meths.input_mouse('left', 'press', '', 4, 2, 11)
|
||||
else
|
||||
meths.input_mouse('left', 'press', '', 0, 2, 16)
|
||||
end
|
||||
eq({0, 2, 1, 0, 10}, funcs.getcurpos())
|
||||
end)
|
||||
|
||||
it("'winblend' option", function()
|
||||
screen:try_resize(50,9)
|
||||
screen:set_default_attr_ids({
|
||||
|
@ -1676,7 +1676,7 @@ describe('ui/mouse/input', function()
|
||||
|
||||
end)
|
||||
|
||||
it('getmousepos works correctly', function()
|
||||
it('getmousepos() works correctly', function()
|
||||
local winwidth = meths.get_option_value('winwidth', {})
|
||||
-- Set winwidth=1 so that window sizes don't change.
|
||||
meths.set_option_value('winwidth', 1, {})
|
||||
@ -1771,7 +1771,7 @@ describe('ui/mouse/input', function()
|
||||
|
||||
-- Test that mouse position values are properly set for ordinary windows.
|
||||
-- Set the float to be unfocusable instead of closing, to additionally test
|
||||
-- that getmousepos does not consider unfocusable floats. (see discussion
|
||||
-- that getmousepos() does not consider unfocusable floats. (see discussion
|
||||
-- in PR #14937 for details).
|
||||
opts.focusable = false
|
||||
meths.win_set_config(float, opts)
|
||||
|
@ -2307,6 +2307,7 @@ describe('ext_multigrid', function()
|
||||
{1:~ }|
|
||||
]]}
|
||||
|
||||
-- XXX: mouse_check_grid() doesn't work properly when clicking on grid 1
|
||||
meths.input_mouse('left', 'press', '', 1, 6, 20)
|
||||
-- TODO(bfredl): "batching" input_mouse is formally not supported yet.
|
||||
-- Normally it should work fine in async context when nvim is not blocked,
|
||||
|
@ -4107,6 +4107,39 @@ func Test_normal_click_on_double_width_char()
|
||||
let &mouse = save_mouse
|
||||
endfunc
|
||||
|
||||
func Test_normal_click_on_empty_line()
|
||||
let save_mouse = &mouse
|
||||
set mouse=a
|
||||
botright new
|
||||
call setline(1, ['', '', ''])
|
||||
let row = win_screenpos(0)[0] + 2
|
||||
20vsplit
|
||||
redraw
|
||||
|
||||
call Ntest_setmouse(row, 1)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 1], getcurpos())
|
||||
call Ntest_setmouse(row, 2)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 2], getcurpos())
|
||||
call Ntest_setmouse(row, 10)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 10], getcurpos())
|
||||
|
||||
call Ntest_setmouse(row, 21 + 1)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 1], getcurpos())
|
||||
call Ntest_setmouse(row, 21 + 2)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 2], getcurpos())
|
||||
call Ntest_setmouse(row, 21 + 10)
|
||||
call feedkeys("\<LeftMouse>", 'xt')
|
||||
call assert_equal([0, 3, 1, 0, 10], getcurpos())
|
||||
|
||||
bwipe!
|
||||
let &mouse = save_mouse
|
||||
endfunc
|
||||
|
||||
func Test_normal33_g_cmd_nonblank()
|
||||
" Test that g<End> goes to the last non-blank char and g$ to the last
|
||||
" visible column
|
||||
|
@ -564,35 +564,38 @@ func Test_virtualedit_mouse()
|
||||
let save_mouse = &mouse
|
||||
set mouse=a
|
||||
set virtualedit=all
|
||||
new
|
||||
botright new
|
||||
let row = win_screenpos(0)[0]
|
||||
20vsplit
|
||||
wincmd p
|
||||
|
||||
call setline(1, ["text\tword"])
|
||||
redraw
|
||||
call Ntest_setmouse(1, 4)
|
||||
call Ntest_setmouse(row, 21 + 4)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 4, 0, 4], getcurpos())
|
||||
call Ntest_setmouse(1, 5)
|
||||
call Ntest_setmouse(row, 21 + 5)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 5, 0, 5], getcurpos())
|
||||
call Ntest_setmouse(1, 6)
|
||||
call Ntest_setmouse(row, 21 + 6)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 5, 1, 6], getcurpos())
|
||||
call Ntest_setmouse(1, 7)
|
||||
call Ntest_setmouse(row, 21 + 7)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 5, 2, 7], getcurpos())
|
||||
call Ntest_setmouse(1, 8)
|
||||
call Ntest_setmouse(row, 21 + 8)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 5, 3, 8], getcurpos())
|
||||
call Ntest_setmouse(1, 9)
|
||||
call Ntest_setmouse(row, 21 + 9)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 6, 0, 9], getcurpos())
|
||||
call Ntest_setmouse(1, 12)
|
||||
call Ntest_setmouse(row, 21 + 12)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 9, 0, 12], getcurpos())
|
||||
call Ntest_setmouse(1, 13)
|
||||
call Ntest_setmouse(row, 21 + 13)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 10, 0, 13], getcurpos())
|
||||
call Ntest_setmouse(1, 15)
|
||||
call Ntest_setmouse(row, 21 + 15)
|
||||
call feedkeys("\<LeftMouse>", "xt")
|
||||
call assert_equal([0, 1, 10, 2, 15], getcurpos())
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user