reanimate.vim の reanimate_message イベントを削除した

reanimate_message は元々、確認メッセージやエラー内容の出力などを行う為のイベントだったのですが、別々に制御した方がよさそうだったので、分割しました。
確認メッセージは reanimate_confirm で、エラー内容の出力は reanimate_error で行います。

" 確認メッセージを無効にする場合は reanimate_confirm を使用する
let g:reanimate_event_disables = {
\   "_" : {
\       "reanimate_confirm" : 1,
\   },
\}