From cef0d22aa02907fae90fc892c71773ebc2858ca8 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 14 Dec 2012 13:59:54 -0500 Subject: [PATCH] Fix :Eval on opening parenthesis Closes #17. --- plugin/foreplay.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/foreplay.vim b/plugin/foreplay.vim index 767ab76..5736e5b 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('(','',')', 'crn', g:foreplay#skip) + let line2 = searchpair('(','',')', 'rn', g:foreplay#skip) else let line1 = a:line1 let line2 = a:line2