From 1c9126093363590f5d2c9ed2e6b41fdc06a6e0e1 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Wed, 12 Jan 2011 16:17:37 +0100 Subject: [PATCH] [vim]indent_finder use python2 --- .vim/plugin/indent_finder.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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