(続) vim-quickrun で文字化け

- "hook/output_encode" *quickrun-module-hook/output_encode*
  出力の文字コードを変換します。
  オプション ~
  hook/output_encode/encoding デフォルト: "&fileencoding"
"from:to" の形式で指定します。":to" は省略できます。その場合、
"from:&encoding" と解釈されます。
https://github.com/thinca/vim-quickrun/blob/master/doc/quickrun.jax

これで文字化けがなおる.
私の場合, utf-8 で出力されていたので以下のように指定する.

let g:quickrun_config['vim'] = { 
\   "hook/output_encode/enable" : 1,
\   "hook/output_encode/encoding" : "utf-8",
\}