Hi
Pasting in command line with CTRL-R is currently
not tested according to coveralls:
https://coveralls.io/builds/9083549/source?filename=src%2Fex_getln.c#L3181
Attached patch adds a test for it. It should exercise at
least those functions which are entirely red in coveralls
i.e not tested:
cmdline_paste(...) in ex_getln.c
cmdline_paste_str(...) in ex_getln.c
cmdline_paste_reg(...) in ops.c
Regards
Dominique
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim
index 3718087..177da34 100644
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -194,3 +194,9 @@ func Test_expand_star_star()
bwipe!
call delete('a', 'rf')
endfunc
+
+func Test_paste_in_cmdline()
+ let @a = "def"
+ call feedkeys(":abc \<C-R>a ghi\<C-B>\"\<CR>", 'tx')
+ call assert_equal('"abc def ghi', @:)
+endfunc