@@ -380,7 +380,7 @@ describe("move to new line", function()
380
380
end )
381
381
382
382
it (" true below" , function ()
383
- debugprint .setup ({move_to_debugline = true })
383
+ debugprint .setup ({ move_to_debugline = true })
384
384
385
385
set_lines ({
386
386
" foo" ,
@@ -397,11 +397,11 @@ describe("move to new line", function()
397
397
" bar" ,
398
398
})
399
399
400
- assert .are .same (vim .api .nvim_win_get_cursor (0 ), {2 , 0 })
400
+ assert .are .same (vim .api .nvim_win_get_cursor (0 ), { 2 , 0 })
401
401
end )
402
402
403
403
it (" true above" , function ()
404
- debugprint .setup ({move_to_debugline = true })
404
+ debugprint .setup ({ move_to_debugline = true })
405
405
406
406
set_lines ({
407
407
" foo" ,
@@ -418,11 +418,11 @@ describe("move to new line", function()
418
418
" bar" ,
419
419
})
420
420
421
- assert .are .same (vim .api .nvim_win_get_cursor (0 ), {1 , 0 })
421
+ assert .are .same (vim .api .nvim_win_get_cursor (0 ), { 1 , 0 })
422
422
end )
423
423
424
424
it (" false" , function ()
425
- debugprint .setup ({move_to_debugline = false })
425
+ debugprint .setup ({ move_to_debugline = false })
426
426
427
427
set_lines ({
428
428
" foo" ,
@@ -439,6 +439,6 @@ describe("move to new line", function()
439
439
" bar" ,
440
440
})
441
441
442
- assert .are .same (vim .api .nvim_win_get_cursor (0 ), {1 , 0 })
442
+ assert .are .same (vim .api .nvim_win_get_cursor (0 ), { 1 , 0 })
443
443
end )
444
444
end )
0 commit comments