RT#83669, RT#83677 - change the default state for these plugins
Karen Etheridge [Fri, 1 Mar 2013 18:17:56 +0000 (10:17 -0800)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 34327ed..259c0cf 100644 (file)
--- 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
index 3713ac4..82fc4e5 100644 (file)
@@ -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',