I am working on a vim plugin and as part of that I am testing various things like "auto-groups" and events where I can hook bits and pieces in general. While things are running I am using functions that output various debug messages using the echom
command. The problem is once I want to have a look at the output, I need to type :message
and then keep hitting a key until the end of the messages appear, so I can see what was the last message.
Is there a workaround for this? Like, is there a plugin that would help me see the messages stream in realtime inside a separate buffer?
Thanks. (OSX, MacVim)