0
0
mirror of https://github.com/vim/vim.git synced 2025-10-31 09:57:14 -04:00

patch 7.4.1962

Problem:    Two test files for increment/decrement.
Solution:   Move the old style test into the new style test. (Hirohito
            Higashi, closes #881)
This commit is contained in:
Bram Moolenaar
2016-06-26 19:38:19 +02:00
parent 00672e1d3f
commit 52df117df7
7 changed files with 25 additions and 28 deletions

View File

@@ -735,5 +735,26 @@ func Test_normal_increment_02()
call assert_equal([0, 2, 4, 0], getpos('.'))
endfunc
" The test35 unified to this file.
func Test_normal_increment_03()
call setline(1, ["100 0x100 077 0",
\ "100 0x100 077 ",
\ "100 0x100 077 0xfF 0xFf",
\ "100 0x100 077 "])
set nrformats=octal,hex
exec "norm! gg\<C-A>102\<C-X>\<C-A>l\<C-X>l\<C-A>64\<C-A>128\<C-X>$\<C-X>"
set nrformats=octal
exec "norm! j0\<C-A>102\<C-X>\<C-A>l\<C-X>2\<C-A>w65\<C-A>129\<C-X>blx6lD"
set nrformats=hex
exec "norm! j0101\<C-X>l257\<C-X>\<C-A>Txldt \<C-A> \<C-X> \<C-X>"
set nrformats=
exec "norm! j0200\<C-X>l100\<C-X>w78\<C-X>\<C-A>k"
call assert_equal(["0 0x0ff 0000 -1",
\ "0 1x100 0777777",
\ "-1 0x0 078 0xFE 0xfe",
\ "-100 -100x100 000 "], getline(1, '$'))
call assert_equal([0, 3, 25, 0], getpos('.'))
endfunc
" vim: tabstop=2 shiftwidth=2 expandtab