1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Zmiany, zmiany, zmiany. Wywalony taglist, w zamian dodany taglisttoo z projektu

eclim. Wywalone funckje PyLint, na rzecz kompilera, funkcja generuj¿ca bufor z
outputem z pylint zosta¿a wrzucona do .vimrc (inne podej¿cie - banalnie proste
i skuteczne). Uzupełniona lista GetLatestVimScripts, stosowne zmiany w .vimrc.
This commit is contained in:
2010-04-11 20:49:43 +02:00
parent 63717266b9
commit 5c304966ea
13 changed files with 2447 additions and 5181 deletions

View File

@@ -1,28 +0,0 @@
" ftplugin for python.
" See: eclim_py plugin in plugins dir
" Global Variables {{{
if !exists("g:EclimPythonValidate")
let g:EclimPythonValidate = 1
endif
" }}}
" Autocmds {{{
if g:EclimPythonValidate
augroup eclim_python_validate
autocmd! BufWritePost <buffer>
autocmd BufWritePost <buffer> call Validate(1)
augroup END
endif
" }}}
if !exists(":Validate")
command -nargs=0 -buffer Validate :call Validate(0)
endif
if !exists(":PyLint")
command -nargs=0 -buffer PyLint :call PyLint()
endif