Fix g:repl_filetype_repl problem

g:repl_filetype_repl didn't functioned.
This commit is contained in:
aiya000 2015-12-23 11:24:50 +09:00
parent 3d995ceed7
commit 9171179f16

View File

@ -7,6 +7,7 @@ let s:save_cpo = &cpo
set cpo&vim
"-------------------"
" If didn't define g:repl_filetype_repl, repl.vim use this
let g:repl#default_filetype_repl = {
\ 'haskell' : {
\ 'repl' : 'ghci',
@ -25,6 +26,7 @@ let g:repl#default_filetype_repl = {
\ 'opt' : ''
\ }
\}
call extend(g:repl#default_filetype_repl, get(g:, 'repl_filetype_repl', {}))
" 'split' or 'vertical split'
let g:repl_split_command = get(g:, 'repl_split_command', 'split')