We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a9e4a commit adb2ee3Copy full SHA for adb2ee3
compiler/python.vim
@@ -13,6 +13,11 @@ if exists(":CompilerSet") != 2 " older Vim always used :setlocal
13
command -nargs=* CompilerSet setlocal <args>
14
endif
15
16
+" Disable Python warnings
17
+if !exists('$PYTHONWARNINGS')
18
+ let $PYTHONWARNINGS="ignore"
19
+endif
20
+
21
" For Flake8 first
22
CompilerSet efm =%E%f:%l:\ could\ not\ compile,
23
CompilerSet efm +=%-Z%p^,
plugin/env.vim renamed to plugin/virtualenv.vim
@@ -1,8 +1,3 @@
1
-" Disable Python warnings
2
-if !exists('$PYTHONWARNINGS')
3
- let $PYTHONWARNINGS="ignore"
4
-endif
5
-
6
if has('python')
7
py << EOF
8
import os
0 commit comments