~dricottone/vim-mypy

be76aa311fc14a40bdd8e1482e2cdb0293412306 — Integralist 7 years ago 5186767
Fix bug in autoload code
1 files changed, 2 insertions(+), 1 deletions(-)

M autoload/mypy.vim
M autoload/mypy.vim => autoload/mypy.vim +2 -1
@@ 7,8 7,9 @@
"
" Add mypy# prefix to any calls for ExecuteMyPy
" Vim will search in this autoload directory for the function
" Note: the function defined here also needs the mypy# prefix

function ExecuteMyPy()
function mypy#ExecuteMyPy()
  silent !clear
  execute "!mypy " . bufname("%")
endfunction