From fc21691f636f7e48657d5d703d03d5d7cd7e0731 Mon Sep 17 00:00:00 2001 From: killphi Date: Sun, 4 Nov 2012 08:27:51 +0100 Subject: [PATCH] removed debug statements --- autoload/vundle/installer.vim | 5 ----- 1 file changed, 5 deletions(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 0cbc2e4..49da1cb 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -172,11 +172,6 @@ func! vundle#installer#delete(bang, dir_name) abort let unlink_target = expand("$HOME/.vim/ftdetect/", 1) let unlink_files = glob(bundle.path().'/ftdetect/*.vim', 1, 1) - call s:log('bundle path: ' . bundle.path()) - call s:log('glob path: ' . bundle.path().'/ftdetect/*.vim') - call s:log('unlink target: ' . unlink_target) - call s:log('unlink files: ' . join(unlink_files, ', ')) - for file in unlink_files let cmd = 'rm -f '. unlink_target .fnamemodify(file, ':p:t') let out = s:system(cmd)