#!/usr/bin/perl
#use Mooix::Thing;
run sub {
	my $this=shift;
	$this->super(@_) || $this->croak("super failed");

	# This assumes that the programmer's home directory is set to their
	# object. Vim get whiny about not being able to write to a .viminfo
	# file (since it runs with a callstack of the user and their
	# session). Just making an empty file is sufficient to shut it up.
	$this->_viminfo("") unless $this->defines('.viminfo');
	
	return $this;
}
