Fixed extraneous changes 2

This commit is contained in:
s-zeng 2017-10-04 20:49:37 -04:00
parent 0b5bb9f3be
commit 60298014d7
2 changed files with 2 additions and 3 deletions

View File

@ -54,7 +54,7 @@ Example for [neobundle.vim](https://github.com/Shougo/neobundle.vim)
Please add the following line into your .vimrc
NeoBundle 's-zeng/repl.vim'
NeoBundle 'ujihisa/repl.vim'
and run `:NeoBundleInstall`.

View File

@ -19,7 +19,6 @@ function! repl#javascript#open_repl() abort
endif
let l:args = printf('%s %s', l:repl['repl'], l:repl['opt'])
let l:vimshell_interactive = ':VimShellInteractive' . printf("--split='%s'", g:repl_split_command)
l:swp = ':wincmd r'
execute l:swp
execute l:vimshell_interactive l:args
call vimshell#interactive#send('.load ' . l:module_file)
endfunction