Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドラインから分割ウィンドウで複数のファイルを開く場合、vim は各ファイルのファイル名、行数、文字数を表示するのが好きです。次に、ユーザーはエンターを押して適切なものに進むように求められます。
これを無効にする設定またはスイッチはありますか? 私はこれを TortoiseSVN との比較に使用していますが、変更を一目見ただけでメッセージが表示されて生産性が低下しています。
'shortmess' vim オプションで遊ぶ必要があります。
:help shortmess
.vimrc に設定するか
set shortmess=at
またはvimの実行中
vim --cmd 'set shortmess=at'