From 75ff64d875df89a22f9dcaf7741b125668345d3c Mon Sep 17 00:00:00 2001 Message-Id: <75ff64d875df89a22f9dcaf7741b125668345d3c.1747442573.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 11 Dec 2006 16:50:39 +0000 Subject: [PATCH] bashrc: Read global and local completion runes. Organization: Straylight/Edgeware From: Mark Wooding This means we can collect the GIT completion runes, among other stuff. --- bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bashrc b/bashrc index a172640..60fed8a 100644 --- a/bashrc +++ b/bashrc @@ -130,6 +130,9 @@ alias e="$EDITOR" alias svn="svnwrap svn" alias @="ssh" +[ -r /etc/bash_completion ] && . /etc/bash_completion +[ -r $HOME/.bash_completion ] && . $HOME/.bash_completion + # --- Make `xt' start an xterm, maybe logging into a remote host --- xt () { -- [mdw]