" of all import lines from your code containing Baz import.
"
" If you have Pylint or Pyflakes output in quickfix window, containing
-" unfedined variables errors, then you can you :call AllImportCompl()
+" unfedined variables errors, then you can you :call python#importcompl#all()
" function. It will go through the quickfix list and find all possible
" imports, sort them and insert under current cursor position.
"
let b:lint_status_func=function("python#lint#status")
sign define LN text=LN texthl=Error
map <F6> :unlet! g:pylint_disable<CR>:call python#lint#start()<CR>
-map \e[32~ :redraw!<CR>:copen<CR>
+map \e[17;2~ :redraw!<CR>:copen<CR>
autocmd BufWritePost *.py call python#lint#start()