From d30a22c235a495c29ae19a3f6e4c37a122acced5 Mon Sep 17 00:00:00 2001 From: aiya000 Date: Sun, 10 Jan 2016 22:23:59 +0900 Subject: [PATCH] Fix coding indent --- autoload/repl.vim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/autoload/repl.vim b/autoload/repl.vim index 1317c8b..1826b7e 100644 --- a/autoload/repl.vim +++ b/autoload/repl.vim @@ -28,12 +28,12 @@ endfunction " echo repl#get_filetype_repl('python') " => {'repl': 'python', 'opt': '-i'} function! repl#get_filetype_repl(filetype) abort - if !exists('g:repl_filetype_repl') - return g:repl#default_filetype_repl[a:filetype] - endif - let l:filetype_repl = deepcopy(g:repl#default_filetype_repl) - call extend(l:filetype_repl, g:repl_filetype_repl) - return l:filetype_repl[a:filetype] + if !exists('g:repl_filetype_repl') + return g:repl#default_filetype_repl[a:filetype] + endif + let l:filetype_repl = deepcopy(g:repl#default_filetype_repl) + call extend(l:filetype_repl, g:repl_filetype_repl) + return l:filetype_repl[a:filetype] endfunction "-------------------"