The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
#
# (c) eric johnson 2002-3020
# email: vimDebug at iijo dot org
# http://iijo.org

# PODNAME: vdd
# ABSTRACT: The Vim Debugger Daemon

use strict;
use warnings;
use Vim::Debug::Daemon;

$SIG{INT} = \&signalHandler;

Vim::Debug::Daemon->new->run;

# die when children die
sub signalHandler {
   exit;
}

__END__
=pod

=head1 NAME

vdd - The Vim Debugger Daemon

=head1 VERSION

version v0.10

=head1 AUTHOR

Eric Johnson <vimdebug at iijo dot org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Eric Johnson.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut