diff src/testdir/test_cmdline.vim @ 13831:1f95ec5de238 v8.0.1787

patch 8.0.1787: cannot insert the whole cursor line commit https://github.com/vim/vim/commit/e2c8d8392684a940cc5608acc73ff47486bd7b92 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 1 19:24:03 2018 +0200 patch 8.0.1787: cannot insert the whole cursor line Problem: Cannot insert the whole cursor line. Solution: Make CTRL-R CTRL-L work. (Andy Massimino, closes https://github.com/vim/vim/issues/2857)
author Christian Brabandt <cb@256bit.org>
date Tue, 01 May 2018 19:30:06 +0200
parents 75e35ebdb7a4
children 3aac8d62351c
line wrap: on
line diff
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -306,6 +306,9 @@ func Test_paste_in_cmdline()
   call feedkeys("ft:aaa \<C-R>\<C-F> bbb\<C-B>\"\<CR>", 'tx')
   call assert_equal('"aaa /tmp/some bbb', @:)
 
+  call feedkeys(":aaa \<C-R>\<C-L> bbb\<C-B>\"\<CR>", 'tx')
+  call assert_equal('"aaa '.getline(1).' bbb', @:)
+
   set incsearch
   call feedkeys("fy:aaa veryl\<C-R>\<C-W> bbb\<C-B>\"\<CR>", 'tx')
   call assert_equal('"aaa verylongword bbb', @:)