From 0f61810784718af2265ccd81c0dc393bf52748a4 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 14 Dec 2012 13:22:02 -0500 Subject: [PATCH] Fix top-level expr location in :Eval Closes #17. --- plugin/foreplay.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/foreplay.vim b/plugin/foreplay.vim index 4da4c74..767ab76 100644 --- a/plugin/foreplay.vim +++ b/plugin/foreplay.vim @@ -457,7 +457,7 @@ function! s:Eval(bang, line1, line2, count, args) abort if a:count ==# 0 normal! ^ let line1 = searchpair('(','',')', 'bcrn', g:foreplay#skip) - let line2 = searchpair('(','',')', 'n', g:foreplay#skip) + let line2 = searchpair('(','',')', 'crn', g:foreplay#skip) else let line1 = a:line1 let line2 = a:line2