]> gitweb.pimeys.fr Git - config-20-100.git/commitdiff
En fait on n'a pas besoin que cette fonction soit commentée.
authorVincent Le Gallic <legallic@crans.org>
Thu, 25 Jul 2013 17:14:15 +0000 (19:14 +0200)
committerVincent Le Gallic <legallic@crans.org>
Thu, 25 Jul 2013 17:14:15 +0000 (19:14 +0200)
.bashrc

diff --git a/.bashrc b/.bashrc
index 041f2f9dd4e2009c77c3c90cd10d253f5bd8ad11..d3d5e474d8246a06474f98bd689075cd277cf32c 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -37,58 +37,58 @@ fi
 [ -d ~/.bash_completion.d/ ] && for f in ~/.bash_completion.d/*; do source $f; done
 
 
-#~# # +-----+
-#~# # | VCS |
-#~# # +-----+
-#~# 
-#~# # Définition de fonction pour pouvoir afficher dans le prompt
-#~# # des infos quand on est dans un dépôt versionné
-#~# 
-#~# find_up () {
-#~#     path="$1"
-#~#     shift 1
-#~#     while [[ "`readlink -f -- \"$path\"`" != "/" ]];
-#~#     do
-#~#         find "$path"  -maxdepth 1 -mindepth 1 "$@"
-#~#         path=${path}/..
-#~#     done
-#~# }
-#~# 
-#~# get_vcs_info () {
-#~#     # Donne les infos sur le dépôt VCS courant.
-#~#     local LBRANCH LTYPE BRANCH TYPE DIR
-#~#     declare -a DIR
-#~#     declare -A TYPE
-#~#     declare -A BRANCH
-#~#     DIR[0]=".git"
-#~#     DIR[1]=".hg"
-#~#     DIR[2]="_darcs"
-#~#     DIR[3]=".svn"
-#~#     TYPE[.git]="git"
-#~#     TYPE[.hg]="mercurial"
-#~#     TYPE[_darcs]="darcs"
-#~#     TYPE[.svn]="svn"
-#~#     BRANCH[.git]='git branch 2>/dev/null | sed -r "s/^[^*].*$//" | paste -s -d "" | sed -r "s/^[*] //"'
-#~#     BRANCH[.hg]='hg branch 2>/dev/null'
-#~#     BRANCH[_darcs]="darcs show repo 2>/dev/null| egrep '^ *Cache' | sed 's@.*/\([^/]*\),.*@\1@'"
-#~#     BRANCH[.svn]="svn info 2>/dev/null | head -n 6 | tail -n 1"
-#~# 
-#~#     DIR=$(eval "find_up \"$PWD\" -name \"\"$(printf -- ' -o -name "%s"' "${DIR[@]}") | head -n 1")
-#~#     if [ -n "$DIR" ]; then
-#~#         DIR=$(basename "$DIR")
-#~#         LBRANCH=$(eval "${BRANCH[$DIR]}")
-#~#         LTYPE="${TYPE[$DIR]}"
-#~#         if [ "$color_prompt" = yes ]; then
-#~#             VCS_info="${nocolor}${vcs_symbols_color}(${nocolor}$LTYPE${vcs_symbols_color})-${vcs_symbols_color}[${vcs_branch_color}$LBRANCH${vcs_symbols_color}]${nocolor}"
-#~#         else
-#~#             VCS_info="($LTYPE)-[$LBRANCH]"
-#~#         fi
-#~#         VCS_size=$((${#LTYPE}+${#LBRANCH}+5))
-#~#     else
-#~#         VCS_info=""
-#~#         VCS_size=0
-#~#     fi
-#~# }
+# +-----+
+# | VCS |
+# +-----+
+
+# Définition de fonction pour pouvoir afficher dans le prompt
+# des infos quand on est dans un dépôt versionné
+
+find_up () {
+    path="$1"
+    shift 1
+    while [[ "`readlink -f -- \"$path\"`" != "/" ]];
+    do
+        find "$path"  -maxdepth 1 -mindepth 1 "$@"
+        path=${path}/..
+    done
+}
+
+get_vcs_info () {
+    # Donne les infos sur le dépôt VCS courant.
+    local LBRANCH LTYPE BRANCH TYPE DIR
+    declare -a DIR
+    declare -A TYPE
+    declare -A BRANCH
+    DIR[0]=".git"
+    DIR[1]=".hg"
+    DIR[2]="_darcs"
+    DIR[3]=".svn"
+    TYPE[.git]="git"
+    TYPE[.hg]="mercurial"
+    TYPE[_darcs]="darcs"
+    TYPE[.svn]="svn"
+    BRANCH[.git]='git branch 2>/dev/null | sed -r "s/^[^*].*$//" | paste -s -d "" | sed -r "s/^[*] //"'
+    BRANCH[.hg]='hg branch 2>/dev/null'
+    BRANCH[_darcs]="darcs show repo 2>/dev/null| egrep '^ *Cache' | sed 's@.*/\([^/]*\),.*@\1@'"
+    BRANCH[.svn]="svn info 2>/dev/null | head -n 6 | tail -n 1"
+
+    DIR=$(eval "find_up \"$PWD\" -name \"\"$(printf -- ' -o -name "%s"' "${DIR[@]}") | head -n 1")
+    if [ -n "$DIR" ]; then
+        DIR=$(basename "$DIR")
+        LBRANCH=$(eval "${BRANCH[$DIR]}")
+        LTYPE="${TYPE[$DIR]}"
+        if [ "$color_prompt" = yes ]; then
+            VCS_info="${nocolor}${vcs_symbols_color}(${nocolor}$LTYPE${vcs_symbols_color})-${vcs_symbols_color}[${vcs_branch_color}$LBRANCH${vcs_symbols_color}]${nocolor}"
+        else
+            VCS_info="($LTYPE)-[$LBRANCH]"
+        fi
+        VCS_size=$((${#LTYPE}+${#LBRANCH}+5))
+    else
+        VCS_info=""
+        VCS_size=0
+    fi
+}
 
 
 # Pour avoir le bon umask en fonction du dossier où on se trouve
@@ -165,7 +165,8 @@ function prompt_command
     local pwd ERR DATE PROMPT DIR POST_DIR
     (( SAVE_COLUMNS == COLUMNS )) || gen_minus_line
 
-    #~# #dépend de la section VCS
+    #~# # À décommenter si on veut des infos
+    #~# # quand on se trouve dans un dépôt versionné
     #~# get_vcs_info
     
     pwd=${PWD/#$HOME/'~'}