]> git.phdru.name Git - dotfiles.git/commitdiff
Feat(.shellrc): Allow `file:/` URLs for `cdgitpath` and `cdremote`
authorOleg Broytman <phd@phdru.name>
Thu, 15 Aug 2019 19:12:56 +0000 (22:12 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 15 Aug 2019 19:12:56 +0000 (22:12 +0300)
.shellrc

index d9c4badb1c93e3fbb7e58017b884b95feb7270c3..edb29b8d6c863b5d43dc94c76de31bd7b1a17519 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -199,7 +199,11 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
          return 1
       fi
 
-      cd "`git config --get --path $path_key`"
+      path_url="`git config --get --path $path_key`"
+      if echo "$path_url" | grep -q '^file:/'; then
+         path_url="`echo \"$path_url\" | sed 's@^file:/\+@/@'`"
+      fi
+      cd "$path_url"
    }
 
    # chdir to a remote's directory (if the remote is on the local FS)
@@ -222,7 +226,7 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
          return 1
       fi
 
-      if git config --get remote.$remote.url | grep -q '^\(/\|\.\./\)'; then
+      if git config --get remote.$remote.url | grep -q '^\(file:/\|/\|\.\./\)'; then
          cdgitpath remote.$remote.url
       else
 
@@ -232,7 +236,7 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
             return 1
          fi
 
-         _list_remotes '^\(/\|\.\./\)' # (/ or ../ at the beginning)
+         _list_remotes '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
          if [ ${#GIT_REMOTES[*]} -eq 1 ]; then
             remote=${GIT_REMOTES[0]}
             unset GIT_REMOTES
@@ -295,7 +299,7 @@ if test -x /usr/bin/git >/dev/null 2>&1; then
 
       # completion for cdremote - list remotes with directories as URLs
       _cdremote_complete() {
-         _list_remotes_completion '^\(/\|\.\./\)' # (/ or ../ at the beginning)
+         _list_remotes_completion '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
          if [ ${#COMPREPLY[*]} -eq 0 ]; then
             _list_remotes_completion .
          fi