comparison src/testdir/test_move.vim @ 19231:b8fd7364befd v8.2.0174

patch 8.2.0174: various commands not completely tested Commit: https://github.com/vim/vim/commit/5d98dc2a48156d44139b75c689bd3137ff7fe8bf Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 29 21:57:34 2020 +0100 patch 8.2.0174: various commands not completely tested Problem: Various commands not completely tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5551)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Jan 2020 22:00:04 +0100
parents e3910b9827d0
children 67fbe280a502
comparison
equal deleted inserted replaced
19230:21e430519a6c 19231:b8fd7364befd
33 call assert_true(&modified) 33 call assert_true(&modified)
34 set nomodified 34 set nomodified
35 35
36 call assert_fails('1,2move 1', 'E134') 36 call assert_fails('1,2move 1', 'E134')
37 call assert_fails('2,3move 2', 'E134') 37 call assert_fails('2,3move 2', 'E134')
38 call assert_fails("move -100", 'E16:')
39 call assert_fails("move +100", 'E16:')
40 call assert_fails('move', 'E16:')
38 41
39 %bwipeout! 42 %bwipeout!
40 endfunc 43 endfunc
44
45 " vim: shiftwidth=2 sts=2 expandtab