Included coveragepy in vim.

This commit is contained in:
Faerbit 2014-01-24 12:56:52 +01:00
parent ca7a69e728
commit c444e96d45
2 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@ init:
test -d addon-mw-utils || git submodule add https://github.com/MarcWeber/vim-addon-mw-utils.git addon-mw-utils
test -d snipmate || git submodule add https://github.com/garbas/vim-snipmate.git snipmate
test -d snippets || git submodule add https://github.com/honza/vim-snippets.git snippets
test -d coveragepy || git submodule add https://github.com/alfredodeza/coveragepy.vim coveragepy
update:
git submodule update

4
vimrc
View File

@ -31,3 +31,7 @@ endif
if argc() == 2
silent vertical all
endif
"Map <F8> on python files
au FileType python :map <F10> :Coveragepy show<cr>
au FileType python :imap <F10> <Esc><F10>