aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_textobjects.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-17 19:18:40 -0800
committerGitHub <noreply@github.com>2019-11-17 19:18:40 -0800
commitd547c8d9ad21234cb6484d87c1d6b8e44714c6db (patch)
tree53835423a312b8058d803985b196f60e927af84e /src/nvim/testdir/test_textobjects.vim
parentaf53a0c0123338575dd59934449d7fe836835d1c (diff)
parent6ca3e6bfa9e0551b453af040ca283ec7eb756178 (diff)
downloadrneovim-d547c8d9ad21234cb6484d87c1d6b8e44714c6db.tar.gz
rneovim-d547c8d9ad21234cb6484d87c1d6b8e44714c6db.tar.bz2
rneovim-d547c8d9ad21234cb6484d87c1d6b8e44714c6db.zip
Merge #11414 from janlazo/vim-8.1.2312
vim-patch:8.1.{2312,2314,2317}
Diffstat (limited to 'src/nvim/testdir/test_textobjects.vim')
-rw-r--r--src/nvim/testdir/test_textobjects.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_textobjects.vim b/src/nvim/testdir/test_textobjects.vim
index 9194e0014d..448b2dc51c 100644
--- a/src/nvim/testdir/test_textobjects.vim
+++ b/src/nvim/testdir/test_textobjects.vim
@@ -48,6 +48,9 @@ func Test_quote_selection_selection_exclusive()
set selection=exclusive
exe "norm! fdvhi'y"
call assert_equal('bcde', @")
+ let @"='dummy'
+ exe "norm! $gevi'y"
+ call assert_equal('bcde', @")
set selection&vim
bw!
endfunc