aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_utf8.vim
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-10-31 16:41:39 +0000
committerSean Dewar <seandewar@users.noreply.github.com>2021-11-26 18:33:59 +0000
commit4efcb72bb758ce93e86fa3ef520e009d01d4891b (patch)
tree2f877ea3043773abc182e3d54abd8336caba997b /src/nvim/testdir/test_utf8.vim
parentfa9076f276c16f64b96cd734f511e682a8621f6f (diff)
downloadrneovim-4efcb72bb758ce93e86fa3ef520e009d01d4891b.tar.gz
rneovim-4efcb72bb758ce93e86fa3ef520e009d01d4891b.tar.bz2
rneovim-4efcb72bb758ce93e86fa3ef520e009d01d4891b.zip
feat(eval/method): partially port v8.1.1993
Problem: More functions can be used as methods. Solution: Make various functions usable as a method. https://github.com/vim/vim/commit/196b4664432f932625cfb6371dc42c24efe6c203 server2client requires +clientserver, which hasn't been ported yet. The eval.txt docs and test_clientserver.vim tests for server2client already exist, so include those changes. test_bufline.vim: Test for setbufline requires v8.1.1189 (which was reverted in #10848).
Diffstat (limited to 'src/nvim/testdir/test_utf8.vim')
-rw-r--r--src/nvim/testdir/test_utf8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_utf8.vim b/src/nvim/testdir/test_utf8.vim
index da72da087f..1f2cdde5cf 100644
--- a/src/nvim/testdir/test_utf8.vim
+++ b/src/nvim/testdir/test_utf8.vim
@@ -69,7 +69,7 @@ func Test_screenchar_utf8()
call setline(1, ["ABC\u0308"])
redraw
call assert_equal([0x0041], screenchars(1, 1))
- call assert_equal([0x0042], screenchars(1, 2))
+ call assert_equal([0x0042], 1->screenchars(2))
call assert_equal([0x0043, 0x0308], screenchars(1, 3))
call assert_equal("A", screenstring(1, 1))
call assert_equal("B", screenstring(1, 2))