diff options
| author | Bram Moolenaar <Bram@vim.org> | 2017-01-06 20:03:58 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2017-01-06 20:03:58 +0100 |
| commit | 6e450a57541676036203a72d40b2e604e938371e (patch) | |
| tree | 4395ea731b069008270ed86e20cc3d0e3c8c983e /src/testdir | |
| parent | 287266527abc163e191a06dd70518bbbdab4468f (diff) | |
| download | vim-git-8.0.0147.tar.gz | |
patch 8.0.0147: searchpair() fails when 'magic' is offv8.0.0147
Problem: searchpair() does not work when 'magic' is off. (Chris Paul)
Solution: Add \m in the pattern. (Christian Brabandt, closes #1341)
Diffstat (limited to 'src/testdir')
| -rw-r--r-- | src/testdir/test_search.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim index 3b9aff4e7..040a8098a 100644 --- a/src/testdir/test_search.vim +++ b/src/testdir/test_search.vim @@ -279,3 +279,18 @@ func Test_use_sub_pat() call X() bwipe! endfunc + +func Test_searchpair() + new + call setline(1, ['other code here', '', '[', '" cursor here', ']']) + 4 + let a=searchpair('\[','',']','bW') + call assert_equal(3, a) + set nomagic + 4 + let a=searchpair('\[','',']','bW') + call assert_equal(3, a) + set magic + q! +endfunc + |
