diff --git a/.vim/plugin/indent_finder.vim b/.vim/plugin/indent_finder.vim index c48d2c1..9ab9d24 100755 --- a/.vim/plugin/indent_finder.vim +++ b/.vim/plugin/indent_finder.vim @@ -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