mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.1634 (#5594)
Problem: Vertical movement after CTRL-A ends up in the wrong column.
(Urtica Dioica)
Solution: Set curswant when appropriate. (Hirohito Higashi)
8e08125d3a
This commit is contained in:
parent
c5bc0ea04c
commit
7e48c23a50
@ -4679,6 +4679,8 @@ int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1)
|
|||||||
theend:
|
theend:
|
||||||
if (visual) {
|
if (visual) {
|
||||||
curwin->w_cursor = save_cursor;
|
curwin->w_cursor = save_cursor;
|
||||||
|
} else if (did_change) {
|
||||||
|
curwin->w_set_curswant = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return did_change;
|
return did_change;
|
||||||
|
@ -810,7 +810,7 @@ static int included_patches[] = {
|
|||||||
// 1637 NA
|
// 1637 NA
|
||||||
// 1636 NA
|
// 1636 NA
|
||||||
// 1635 NA
|
// 1635 NA
|
||||||
// 1634,
|
1634,
|
||||||
// 1633 NA
|
// 1633 NA
|
||||||
// 1632 NA
|
// 1632 NA
|
||||||
// 1631 NA
|
// 1631 NA
|
||||||
|
@ -727,6 +727,14 @@ describe('Ctrl-A/Ctrl-X on visual selections', function()
|
|||||||
exec "norm! gg$\<C-A>"
|
exec "norm! gg$\<C-A>"
|
||||||
call assert_equal("002", getline(1))
|
call assert_equal("002", getline(1))
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test a regression of patch 7.4.1087 fixed.
|
||||||
|
func Test_normal_increment_02()
|
||||||
|
call setline(1, ["hello 10", "world"])
|
||||||
|
exec "norm! ggl\<C-A>jx"
|
||||||
|
call assert_equal(["hello 11", "worl"], getline(1, '$'))
|
||||||
|
call assert_equal([0, 2, 4, 0], getpos('.'))
|
||||||
|
endfunc
|
||||||
]=])
|
]=])
|
||||||
end)
|
end)
|
||||||
|
|
||||||
@ -745,4 +753,9 @@ describe('Ctrl-A/Ctrl-X on visual selections', function()
|
|||||||
call('Test_normal_increment_01')
|
call('Test_normal_increment_01')
|
||||||
eq({}, nvim.get_vvar('errors'))
|
eq({}, nvim.get_vvar('errors'))
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it('maintains correct column after CTRL-A', function()
|
||||||
|
call('Test_normal_increment_02')
|
||||||
|
eq({}, nvim.get_vvar('errors'))
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user