vimshell/history を insert で開始しないようにする

タイトルどおりなんですが、VimShell の で起動する unite-vimshell/history が insert で開始するんですが、これを止めさせたかったので設定を変更しました。

[ftplugin/vimshell.vim]

inoremap <buffer><expr> <C-l> unite#start_complete(
\ ['vimshell/history'], {
\ 'no_start_insert' : 1,
\ 'input' : vimshell#get_cur_text()})


:help unite#start_complete() には 'start_insert' : 0 って書かれていたんですが、それだとうまく動作しなかったので 'no_start_insert' : 1 にしてあります。