Skip to content

Commit

Permalink
follows the latest version of vimshell
Browse files Browse the repository at this point in the history
  • Loading branch information
ujihisa committed Sep 21, 2010
1 parent f620354 commit 36e5cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/quickinteractive.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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


Expand Down

0 comments on commit 36e5cc8

Please sign in to comment.