1
0
Fork 0
mirror of synced 2024-11-23 09:15:35 -05:00
ultimate-vim/sources_non_forked/vim-pep8/ftplugin/python_pep8.vim
2013-08-17 19:58:31 +02:00

78 lines
2.1 KiB
VimL

"
" Python filetype plugin for running pep8
" Language: Python (ft=python)
" Maintainer: Vincent Driessen <vincent@datafox.nl>
" Version: Vim 7 (may work with lower Vim versions, but not tested)
" URL: http://github.com/nvie/vim-pep8
"
" Only do this when not done yet for this buffer
if exists("b:loaded_pep8_ftplugin")
finish
endif
let b:loaded_pep8_ftplugin = 1
if !exists("g:pep8_args")
let g:pep8_args = ""
endif
let s:pep8_cmd="pep8"
if !exists("*Pep8()")
function Pep8()
if !executable(s:pep8_cmd)
echoerr "File " . s:pep8_cmd . " not found. Please install it first."
return
endif
set lazyredraw " delay redrawing
cclose " close any existing cwindows
" store old grep settings (to restore later)
let l:old_gfm=&grepformat
let l:old_gp=&grepprg
" write any changes before continuing
if &readonly == 0
update
endif
" perform the grep itself
let &grepformat="%f:%l:%c: %m"
let &grepprg=s:pep8_cmd . " --repeat " . g:pep8_args
silent! grep! %
" restore grep settings
let &grepformat=l:old_gfm
let &grepprg=l:old_gp
" open cwindow
let has_results=getqflist() != []
if has_results
execute 'belowright copen'
setlocal wrap
nnoremap <buffer> <silent> c :cclose<CR>
nnoremap <buffer> <silent> q :cclose<CR>
endif
set nolazyredraw
redraw!
if has_results == 0
" Show OK status
hi Green ctermfg=green
echohl Green
echon "PEP8 safe"
echohl
endif
endfunction
endif
" Add mappings, unless the user didn't want this.
" The default mapping is registered under to <F6> by default, unless the user
" remapped it already (or a mapping exists already for <F6>)
if !exists("no_plugin_maps") && !exists("no_pep8_maps")
if !hasmapto('Pep8(')
noremap <buffer> <F6> :call Pep8()<CR>
noremap! <buffer> <F6> <Esc>:call Pep8()<CR>
endif
endif