]> git.phdru.name Git - dotfiles.git/blob - .vim/compiler/python.vim
Initial import
[dotfiles.git] / .vim / compiler / python.vim
1 if exists("current_compiler")
2   finish
3 endif
4 let current_compiler = "python"
5
6 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
7   command -nargs=* CompilerSet setlocal <args>
8 endif
9
10 CompilerSet makeprg=compyle4vim.py\ %
11    \ errorformat=%E\ \ File\ \"%f\"\\,\ line\ %l\\,\ column\ %c,%C%m
12