Vimjas / vint

Fast and Highly Extensible Vim script Language Lint implemented in Python.
MIT License
700 stars 33 forks source link

[RFC] Check unreachable code #360

Open tyru opened 4 years ago

tyru commented 4 years ago

It would appreciate that vint warns unreachable code at echomsg of below code.

function! s:func() abort
  return 42
  echomsg 'unreachable!'
endfunction