22 lines
742 B
VimL
22 lines
742 B
VimL
scriptencoding utf-8
|
|
|
|
function! repl#python#open_repl() abort
|
|
" Setting up the file for the current file
|
|
if &modified
|
|
" Create new file temporary
|
|
let l:module_file = tempname() . '.py'
|
|
call writefile(getline(1, expand('$')), l:module_file)
|
|
else
|
|
let l:module_file = expand('%:p')
|
|
endif
|
|
|
|
let l:repl = get(g:, 'repl_filetype_repl.python.repl', g:repl#default_filetype_repl.python['repl'])
|
|
let l:opt = get(g:, 'repl_filetype_repl.python.opt', g:repl#default_filetype_repl.python['opt'])
|
|
if !executable(l:repl)
|
|
call repl#echo_error(printf("You don't have repl: '%s'", l:repl))
|
|
return
|
|
endif
|
|
let l:args = printf('%s %s %s', l:repl, l:opt, l:module_file)
|
|
execute ':VimShellInteractive' l:args
|
|
endfunction
|