From 43a9a9b19109e3addc9d3ceb5880beb08ac295fd Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sun, 29 Jul 2018 20:55:41 +0200 Subject: [PATCH] Fix test/signatures.vim: ensure there is no indent (nvim) --- test/signatures.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/signatures.vim b/test/signatures.vim index baaf9af..06533f2 100644 --- a/test/signatures.vim +++ b/test/signatures.vim @@ -97,7 +97,7 @@ describe 'signatures' let funcname = repeat('a', &columns - (30 + (&ruler ? 18 : 0))) put = 'def '.funcname.'(arg1, arg2, arg3, a, b, c):' put = ' pass' - execute "normal o".funcname."( " + execute "normal o\".funcname."( " Expect Signature() == "\n".funcname."(arg1, …)" exe 'normal sarg1, ' @@ -112,7 +112,7 @@ describe 'signatures' g/^/d put = 'def '.funcname.'('.repeat('b', 20).', arg2):' put = ' pass' - execute "normal o".funcname."( " + execute "normal o\".funcname."( " Expect Signature() == "\n".funcname."(…)" end