[vim]indent_finder use python2

This commit is contained in:
Mathieu Maret 2011-01-12 16:17:37 +01:00
parent 71167734c4
commit 1c91260933
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
augroup IndentFinder
au! IndentFinder
au BufRead *.* let b:indent_finder_result = system('python -c "import indent_finder; indent_finder.main()" --vim-output "' . expand('%') . '"' )
au BufRead *.* let b:indent_finder_result = system('python2 -c "import indent_finder; indent_finder.main()" --vim-output "' . expand('%') . '"' )
au BufRead *.* execute b:indent_finder_result
" Uncomment the next line to see which indentation is applied on all your loaded files