- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Vim/補完/辞書ファイルによる補完 - dictionary へ行く。
- 1 (2017-05-02 (火) 01:44:38)
辞書ファイルによる補完 - dictionary
辞書ファイルのパスの指定
set dictionary = $VIM/vimfiles/dict/my.dict
複数の辞書ファイルのパスの指定
let $MYDICT1 = $HOME . '.vim/dict/my1.dict' let $MYDICT2 = $HOME . '.vim/dict/my2.dict' function! SetDict() let files = [expand($MYDICT1), expand($MYDICT2)] let &dict = join(files, ',') endfunction call SetDict()