Skip to content

Commit

Permalink
Fix test/signatures.vim: ensure there is no indent (nvim)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Jul 30, 2018
1 parent e05f346 commit 43a9a9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/signatures.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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\<BS>".funcname."( "
Expect Signature() == "\n".funcname."(arg1, …)"

exe 'normal sarg1, '
Expand All @@ -112,7 +112,7 @@ describe 'signatures'
g/^/d
put = 'def '.funcname.'('.repeat('b', 20).', arg2):'
put = ' pass'
execute "normal o".funcname."( "
execute "normal o\<BS>".funcname."( "
Expect Signature() == "\n".funcname."(…)"
end

Expand Down

0 comments on commit 43a9a9b

Please sign in to comment.