From 36e5cc8cf4b3de64d6ead52d0661ff1a84e8b121 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Mon, 20 Sep 2010 23:50:57 -0700 Subject: [PATCH] follows the latest version of vimshell --- plugin/quickinteractive.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/quickinteractive.vim b/plugin/quickinteractive.vim index 7fe2bc9..f75d4de 100644 --- a/plugin/quickinteractive.vim +++ b/plugin/quickinteractive.vim @@ -12,7 +12,7 @@ function! QuickInteractiveRuby() let l:args = 'irb --simple-prompt -r ' . l:tmpfile call vimshell#execute_internal_command( \ 'iexe', vimproc#parser#split_args(l:args), { 'stdin' : '', 'stdout' : '', 'stderr' : '' }, - \ { 'is_interactive' : 0, 'is_from_command' : 1 }) + \ { 'is_interactive' : 0, 'is_single_command' : 1 }) endfunction function! QuickInteractiveHaskell() @@ -23,7 +23,7 @@ function! QuickInteractiveHaskell() let l:args = 'ghci ' . l:tmpfile call vimshell#execute_internal_command( \ 'iexe', vimproc#parser#split_args(l:args), { 'stdin' : '', 'stdout' : '', 'stderr' : '' }, - \ { 'is_interactive' : 0, 'is_from_command' : 1 }) + \ { 'is_interactive' : 0, 'is_single_command' : 1 }) endfunction