aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-06-08 08:15:37 +0200
committerGitHub <noreply@github.com>2018-06-08 08:15:37 +0200
commitc500f22f3ced8bbc271c4ec50d2217626ba5e97e (patch)
tree07b50e78d6d6b0979493d166d69e940a2d56b705 /src/nvim/testdir
parentbe68f218ffef891fe4521d70cf52eceb93ef5d5e (diff)
parent231539cf3c0ea4ee3507b63025f62f24bd4431fc (diff)
downloadrneovim-c500f22f3ced8bbc271c4ec50d2217626ba5e97e.tar.gz
rneovim-c500f22f3ced8bbc271c4ec50d2217626ba5e97e.tar.bz2
rneovim-c500f22f3ced8bbc271c4ec50d2217626ba5e97e.zip
Merge #8498 from janlazo/vim-8.0.0523
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_normal.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim
index 10d4c5dd94..27ac084ef0 100644
--- a/src/nvim/testdir/test_normal.vim
+++ b/src/nvim/testdir/test_normal.vim
@@ -2387,3 +2387,15 @@ func Test_changelist()
%bwipe!
let &ul = save_ul
endfunc
+
+func Test_delete_until_paragraph()
+ if !has('multi_byte')
+ return
+ endif
+ new
+ normal grádv}
+ call assert_equal('á', getline(1))
+ normal grád}
+ call assert_equal('', getline(1))
+ bwipe!
+endfunc