.vim: Dammit
Forgot to trim .git information from plugins
This commit is contained in:
38
.vim/bundle/vim-template/templates/=template=.pm
Normal file
38
.vim/bundle/vim-template/templates/=template=.pm
Normal file
@@ -0,0 +1,38 @@
|
||||
package %FILE%;
|
||||
#
|
||||
# Short description for %FFILE%
|
||||
#
|
||||
# Author %USER% <%MAIL%>
|
||||
# Version 0.1
|
||||
# Copyright (C) %YEAR% %USER% <%MAIL%>
|
||||
# Modified On %FDATE%
|
||||
# Created %FDATE%
|
||||
#
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
our @ISA = qw(Exporter);
|
||||
our %EXPORT_TAGS = ( 'all' => [ qw() ] );
|
||||
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
|
||||
our @EXPORT = qw();
|
||||
our $VERSION = '1.00';
|
||||
require Exporter;
|
||||
use AutoLoader qw(AUTOLOAD);
|
||||
|
||||
|
||||
sub new
|
||||
{
|
||||
my $class = shift;
|
||||
my $arg = shift;
|
||||
my $self = {};
|
||||
|
||||
%HERE%
|
||||
|
||||
bless($self, $class);
|
||||
return $self;
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
# __END__
|
||||
# # Below is stub documentation for your module. You'd better edit it!
|
Reference in New Issue
Block a user