今日、私は私の.vimrc
効果が出ていないことを発見しました。ほんの数時間前に大丈夫だった。
でvimを起動したとき$vim --plugin
、:scriptnames
何もエコーされませんでした。.vimrc
ファイルが読み込まれていません。(注:/etc/vimrc
この問題をデバッグするために削除されました。)
それから私はグーグルを試みて、$VIMINIT
不審な変数を見つけました。
の値は$VIMINIT
次のとおりです。
$ echo $VIMINIT
set number
Vimに関するドキュメントVIMINIT
:
c. Four places are searched for initializations. The first that exists
is used, the others are ignored. The $MYVIMRC environment variable is
set to the file that was first found, unless $MYVIMRC was already set.
- The environment variable VIMINIT (see also |compatible-default|) (*)
The value of $VIMINIT is used as an Ex command line.
- The user vimrc file(s):
"$HOME/.vimrc" (for Unix and OS/2) (*)
"s:.vimrc" (for Amiga) (*)
"home:.vimrc" (for Amiga) (*)
"$VIM/.vimrc" (for OS/2 and Amiga) (*)
"$HOME/_vimrc" (for MS-DOS and Win32) (*)
"$VIM/_vimrc" (for MS-DOS and Win32) (*)
Note: For Unix, OS/2 and Amiga, when ".vimrc" does not exist,
"_vimrc" is also tried, in case an MS-DOS compatible file
system is used. For MS-DOS and Win32 ".vimrc" is checked
after "_vimrc", in case long file names are used.
Note: For MS-DOS and Win32, "$HOME" is checked first. If no
"_vimrc" or ".vimrc" is found there, "$VIM" is tried.
See |$VIM| for when $VIM is not set.
- The environment variable EXINIT.
The value of $EXINIT is used as an Ex command line.
- The user exrc file(s). Same as for the user vimrc file, but with
"vimrc" replaced by "exrc". But only one of ".exrc" and "_exrc" is
used, depending on the system. And without the (*)!
vimのドキュメントを完全に理解できませんでした。$VIMINIT
vimの起動を台無しにするかもしれないようです。
クリア$VIMINIT
:
$ VIMINIT=
$ echo $VIMINIT
問題はまだ存在しています。
$VIMINIT
どの.vimrc
ファイルよりも先例があります。そして、それは先着順のルールを満たします。したがって、はい.vimrc
は無視されます。