diff options
Diffstat (limited to 'src/nvim/testdir/test_regexp_utf8.vim')
-rw-r--r-- | src/nvim/testdir/test_regexp_utf8.vim | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/nvim/testdir/test_regexp_utf8.vim b/src/nvim/testdir/test_regexp_utf8.vim index ecc7ed3e53..9e9a3de500 100644 --- a/src/nvim/testdir/test_regexp_utf8.vim +++ b/src/nvim/testdir/test_regexp_utf8.vim @@ -90,21 +90,6 @@ func Test_classes_re2() set re=0 endfunc -func Test_source_utf8() - " check that sourcing a script with 0x80 as second byte works - new - call setline(1, [':%s/àx/--à1234--/g', ':%s/Àx/--À1234--/g']) - write! Xscript - bwipe! - new - call setline(1, [' àx ', ' Àx ']) - source! Xscript | echo - call assert_equal(' --à1234-- ', getline(1)) - call assert_equal(' --À1234-- ', getline(2)) - bwipe! - call delete('Xscript') -endfunc - func Test_recursive_substitute() new s/^/\=execute("s#^##gn") |