~dricottone/vim-mypy

b62fca16d42857888ab6dc7a8ffcbab85f224fa9 — dricottone 5 years ago 2309c03 dev
Remove --fast-parser option

The parser for mypy was changed permanently. The 'fast' parser is no
longer opt-in-able. (Rather, it became possible to opt-out of it.)
2 files changed, 3 insertions(+), 1 deletions(-)

A .gitignore
M autoload/mypy.vim
A .gitignore => .gitignore +2 -0
@@ 0,0 1,2 @@
.mypy_cache


M autoload/mypy.vim => autoload/mypy.vim +1 -1
@@ 11,5 11,5 @@

function mypy#ExecuteMyPy()
  silent !clear
  execute "!mypy --ignore-missing-imports --follow-imports=skip --fast-parser " . bufname("%")
  execute "!mypy --ignore-missing-imports --follow-imports=skip " . bufname("%")
endfunction