autoload/splicelib/util/io.py @ 12d0ec667b63

Implement crash solution given in Google group.

link for Google group:
https://groups.google.com/forum/#!topic/vim_dev/HgKdV33Jy5I
author killphi <killphi@gmx.de>
date Fri, 23 Aug 2013 17:07:07 +0200
parents ddce69161ccb
children (none)
import sys
import vim


def error(m):
    sys.stderr.write(str(m) + '\n')

def echomsg(m):
    vim.command('echomsg "%s"' % m)