【unite.vim】set_substitute_pattern は衰退しました(その2)

昨日の記事を出した直後に、もっと簡単に定義できるメソッドが定義されていました。

今までのスクリプトを修正するときは以下のようにするだけで ok です。

修正前 修正後
unite#set_substitute_pattern unite#custom#substitute

せっかくだから、俺はこの Unite + vim-ref を選ぶぜ! | blog.delphinus.dev
https://blog.delphinus.dev/2010/12/vim-ref-with-unite.html

上のリンクの例から抜粋。

call unite#custom#substitute('files', '\$\w\+', '\=eval(submatch(0))', 200)
call unite#custom#substitute('files', '^@@', '\=fnamemodify(expand("#"), ":p:h")."/"', 2)
call unite#custom#substitute('files', '^@', '\=getcwd()."/*"', 1)
call unite#custom#substitute('files', '^;r', '\=$VIMRUNTIME."/"')
call unite#custom#substitute('files', '^\~', escape($HOME, '\'), -2)
call unite#custom#substitute('files', '\\\@<! ', '\\ ', -20)
call unite#custom#substitute('files', '\\ \@!', '/', -30)

if has('win32') || has('win64')
    call unite#custom#substitute('files', '^;p', 'C:/Program Files/')
    uall unite#custom#substitute('files', '^;v', '~/vimfiles/')
else
    uall unite#custom#substitute('files', '^;v', '~/.vim/')
endif

unite.vim で set_substitute_pattern がなくなった件について

このメソッドがなくなったのは結構インパクトがあったみたいで、一日にして更新されてこの記事も必要なくなってしまいました。せっかくなので残しておきますが、こちらの解決法がずっとスマートです。

Unite をアップデートすると今まで使ってた設定でエラーが出るようになってしまいました。調べてみると、deprecated な(?)一部のメソッドが削除されてしまったようです。

せっかくだから、俺はこの Unite + vim-ref を選ぶぜ! | blog.delphinus.dev
https://blog.delphinus.dev/2010/12/vim-ref-with-unite.html

上記記事に書いた以下の部分を、

" 様々なショートカット
call unite#set_substitute_pattern('file', '\$\w\+', '\=eval(submatch(0))', 200)
call unite#set_substitute_pattern('file', '^@@', '\=fnamemodify(expand("#"), ":p:h")."/"', 2)
call unite#set_substitute_pattern('file', '^@', '\=getcwd()."/*"', 1)
call unite#set_substitute_pattern('file', '^;r', '\=$VIMRUNTIME."/"')
call unite#set_substitute_pattern('file', '^\~', escape($HOME, '\'), -2)
call unite#set_substitute_pattern('file', '\\\@<! ', '\\ ', -20)
call unite#set_substitute_pattern('file', '\\ \@!', '/', -30)
 
if has('win32') || has('win64')
    call unite#set_substitute_pattern('file', '^;p', 'C:/Program Files/')
    call unite#set_substitute_pattern('file', '^;v', '~/vimfiles/')
else
    call unite#set_substitute_pattern('file', '^;v', '~/.vim/')
endif

以下のように修正してください。

Continue reading