From dd3155e0ac3cd1284befc587fce21ecf48e5aa9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Quelin?= Date: Fri, 13 Mar 2009 11:33:30 +0100 Subject: [PATCH] initial module checkin --- lib/Padre/Plugin/Autoformat.pm | 90 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 lib/Padre/Plugin/Autoformat.pm diff --git a/lib/Padre/Plugin/Autoformat.pm b/lib/Padre/Plugin/Autoformat.pm new file mode 100644 index 0000000..1e4a25f --- /dev/null +++ b/lib/Padre/Plugin/Autoformat.pm @@ -0,0 +1,90 @@ +# +# This file is part of Padre::Plugin::Autoformat. +# Copyright (c) 2009 Jerome Quelin, all rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the same terms as Perl itself. +# +# + +package Padre::Plugin::Autoformat; + +use strict; +use warnings; + +our $VERSION = '0.0.1'; + +1; +__END__ + +=head1 NAME + +Padre::Plugin::Autoformat - reformat your text within Padre + + + +=head1 SYNOPSIS + + $ padre + Ctrl+Shift+J + + + +=head1 DESCRIPTION + +This plugin allows one to reformat her text automatically with Ctrl+Shift+J. +It is using C underneath, so check this module's pod for +more information. + + + +=head1 BUGS + +Please report any bugs or feature requests to C, or through the web interface at +L. I will +be notified, and then you'll automatically be notified of progress on +your bug as I make changes. + + + +=head1 SEE ALSO + +Our git repository is located at L, +and can be browsed at L. + + +You can also look for information on this module at: + +=over 4 + +=item * AnnoCPAN: Annotated CPAN documentation + +L + +=item * CPAN Ratings + +L + +=item * Open bugs + +L + +=back + + + +=head1 AUTHOR + +Jerome Quelin, C<< >> + + + +=head1 COPYRIGHT & LICENSE + +Copyright (c) 2009 Jerome Quelin, all rights reserved. + +This program is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut -- 2.11.4.GIT