nixpkgs/pkgs/shells/bash
Peter Simons 9f20aa5df6 bash: install extensive completion library in the interactive version
Add the command-line completion library to the "interactive" version of
bash. That code is *not* active by default. To enable it, run

 | . ${bash}/etc/bash_completion

in your ~/.bashrc. If you prefer to build bashInteractive without that
feature, use the following override in ~/.nixpkgs/config.nix to disable it:

 | {
 |   packageOverrides = pkgs:
 |   {
 |     bashInteractive = pkgs.bashInteractive.override {
 |       bashCompletion = null;
 |     };
 |   };
 | }

svn path=/nixpkgs/trunk/; revision=29244
2011-09-13 17:50:03 +00:00
..
bash-patches.nix * Update to bash-4.1-p2 (since we're rebuilding everything anyway). 2010-01-26 16:34:50 +00:00
default.nix bash: install extensive completion library in the interactive version 2011-09-13 17:50:03 +00:00
update-patch-set.sh bash: Make `update-patch-set.sh' executable. 2010-01-05 11:27:50 +00:00