Reputation: 1217
I've been messing with vim configuration recently, and now when I open the first file in gVim, I see some warnings that disappear quickly. Where else can I see them and see what's wrong?
Upvotes: 5
Views: 569
Reputation: 53674
Try one of the following:
:messages
command. It will show you all messages (except that were echoed with echo
or echon
).vim -c 'qa!' > messages.log
.vim --cmd 'redir! > messages.log' -c 'redir END' -c 'qa!'
, then observe messages.log
.Upvotes: 10