comparison src/testdir/test_global.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 8e5ec22db3d8
children 1b02482e6a61
comparison
equal deleted inserted replaced
19230:21e430519a6c 19231:b8fd7364befd
16 call assert_fails('g/found/3v/bad/s/^/++/', 'E147') 16 call assert_fails('g/found/3v/bad/s/^/++/', 'E147')
17 g/found/v/bad/s/^/++/ 17 g/found/v/bad/s/^/++/
18 call assert_equal(['nothing', '++found', 'found bad', 'bad'], getline(1, 4)) 18 call assert_equal(['nothing', '++found', 'found bad', 'bad'], getline(1, 4))
19 bwipe! 19 bwipe!
20 endfunc 20 endfunc
21
22 func Test_global_error()
23 call assert_fails('g\\a', 'E10:')
24 call assert_fails('g', 'E148:')
25 call assert_fails('g/\(/y', 'E476:')
26 endfunc
27
28 " vim: shiftwidth=2 sts=2 expandtab