From: Karen Etheridge Date: Fri, 1 Mar 2013 18:17:56 +0000 (-0800) Subject: RT#83669, RT#83677 - change the default state for these plugins X-Git-Tag: v1.003015~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=26d5d72e66d589309c95440fc7274aefdd0f4a86 RT#83669, RT#83677 - change the default state for these plugins --- diff --git a/Changes b/Changes index 34327ed..259c0cf 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,8 @@ Etheridge!) - fix "Attempt to use reference as lvalue in substr" warning on perl 5.16 (thanks, ilmari!) + - plugins that are used by the default profile now default to being + installed, fixing RT#83669 and RT#83677 1.003013 - Make Sys::SigAction optional dependency for Win32 systems diff --git a/Makefile.PL b/Makefile.PL index 3713ac4..82fc4e5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -42,7 +42,7 @@ feature 'DDC plugin - even better format results with Data::Dumper::Concise', 'Data::Dumper::Concise' => 0; feature 'INC completion driver - tab complete module names in use and require', - -default => 0, + -default => 1, 'File::Next' => 0; feature 'Interrupt plugin - traps SIGINT to kill long-running lines', @@ -50,7 +50,7 @@ feature 'Interrupt plugin - traps SIGINT to kill long-running lines', 'Sys::SigAction' => 0; feature 'Keywords completion driver - tab complete Perl keywords and operators', - -default => 0, + -default => 1, 'B::Keywords' => 0; feature 'LexEnv plugin - variables declared with "my" persist between statements',