We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a61339 commit 9be0e0bCopy full SHA for 9be0e0b
2 files changed
src/testdir/test_system.vim
@@ -12,9 +12,9 @@ func Test_System()
12
else
13
call assert_equal("123\n", system('echo 123'))
14
call assert_equal(["123\r"], systemlist('echo 123'))
15
- call assert_equal("123", system('more', '123'))
16
- call assert_equal(["123"], systemlist('more', '123'))
17
- call assert_equal(["as\<NL>df"], systemlist('more', ["as\<NL>df"]))
+ call assert_equal("123\n", system('more', '123'))
+ call assert_equal(["123\r"], systemlist('more', '123'))
+ call assert_equal(["as\r", "df\r"], systemlist('more', ["as\<NL>df"]))
18
endif
19
20
if !executable('cat') || !executable('wc')
@@ -62,7 +62,7 @@ func Test_System()
62
call assert_equal(['asdf', "pw\<NL>er", 'xxxx'], out)
63
64
let out = systemlist('more', bufnr('%'))
65
- call assert_equal(['asdf', "pw\<NL>er", 'xxxx'], out)
+ call assert_equal(["asdf\r", "pw\r", "er\r", "xxxx\r"], out)
66
67
bwipe!
68
src/version.c
@@ -757,6 +757,8 @@ static char *(features[]) =
757
758
static int included_patches[] =
759
{ /* Add new patch number below this line */
760
+/**/
761
+ 2093,
762
/**/
763
2092,
764
0 commit comments