Created
June 3, 2011 16:46
-
-
Save creaktive/1006663 to your computer and use it in GitHub Desktop.
My Devel::REPL repl.rc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use common::sense; | |
| use lib 'lib'; | |
| use open ':locale'; | |
| use lexicals; | |
| use Data::Dumper; | |
| use Data::Printer; | |
| use Digest::MD5 qw(md5_hex md5_base64); | |
| use Digest::SHA qw(sha1_hex sha1_base64); | |
| use Encode; | |
| use File::Slurp; | |
| use File::Temp; | |
| use LWP::Simple; | |
| use List::MoreUtils ':all'; | |
| use List::Util qw(first max maxstr min minstr reduce shuffle sum); | |
| use MIME::Base64; | |
| use Scalar::Util qw(blessed dualvar isweak readonly refaddr reftype tainted weaken isvstring looks_like_number set_prototype); | |
| use Text::CSV; | |
| use Tie::Handle::CSV; | |
| load_plugin qw( | |
| Colors | |
| Completion | |
| CompletionDriver::Globals | |
| CompletionDriver::INC | |
| CompletionDriver::Keywords | |
| CompletionDriver::LexEnv | |
| CompletionDriver::Methods | |
| DataPrinter | |
| DumpHistory | |
| History | |
| Interrupt | |
| LexEnv | |
| ReadLineHistory | |
| ); | |
| #Timing | |
| $_REPL->do_readline_filename_completion(1); | |
| say "\033]0;re.pl\007"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment