move Default profile to Standard; default profile is now Minimal
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Standard.pm
CommitLineData
584978c9 1package Devel::REPL::Profile::Standard;
2
3use Moose;
4use namespace::autoclean;
5
6with 'Devel::REPL::Profile';
7
8sub plugins { qw(
9 Colors
10 Completion
11 CompletionDriver::INC
12 CompletionDriver::LexEnv
13 CompletionDriver::Keywords
14 CompletionDriver::Methods
15 History
16 LexEnv
17 DDS
18 Packages
19 Commands
20 MultiLine::PPI
21 ReadLineHistory
22);}
23
24sub apply_profile {
25 my ($self, $repl) = @_;
26 $repl->load_plugin($_) for $self->plugins;
27}
28
291;