aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2012-10-21 17:20:42 +0200
committerMiquel Sabaté <mikisabate@gmail.com>2012-10-21 17:20:42 +0200
commitf15c92d52c4514b1dabef69a421a1db0e59d47f9 (patch)
tree20671bf4c73584a23c9d1460ac4ecf99491ffc3c
parentf53ea7995799beb6bdc7df19a0dd74bccdc2e14e (diff)
downloaddotfiles-f15c92d52c4514b1dabef69a421a1db0e59d47f9.tar.gz
dotfiles-f15c92d52c4514b1dabef69a421a1db0e59d47f9.zip
Renamed the go function to "g" so the name does not clash with the Go compiler
-rw-r--r--bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index b7298b7..b8d7f92 100644
--- a/bashrc
+++ b/bashrc
@@ -62,7 +62,7 @@ GO_SHORTCUTS=(
)
-function go {
+function g {
local target=$1
local len=${#GO_SHORTCUTS[@]}
for (( i=0; i<$len; i+=2 ));