]> git.zndr.dk Git - dotfiles.git/commitdiff
Change path to ranger
authorJannik ZANDER <jzander@grundfos.com>
Sat, 7 Jul 2018 18:09:08 +0000 (20:09 +0200)
committerJannik ZANDER <jzander@grundfos.com>
Sat, 7 Jul 2018 18:09:08 +0000 (20:09 +0200)
.config/bash/aliases
.config/bash/functions [deleted file]

index 7f92651b03860065cd0d37597fcfbe02736af67e..134e809190ef190c27f653fb668aca2884a72710 100644 (file)
@@ -21,7 +21,6 @@ alias l.='ls -d .[a-z]*'
 alias grep='grep --color=auto'
 alias egrep='egrep --color=auto'
 alias fgrep='fgrep --color=auto'
-#alias less='less -RX'                         # raw control characters, don't clear the screen after quitting
 alias less='less -m -N -g -i -J --underline-special --SILENT -X'
 alias more='less'
 
@@ -39,9 +38,6 @@ alias open='xdg-open &>/dev/null'
 alias dit='git --git-dir=$HOME/.dit --work-tree=$HOME'
 alias ag='ag --path-to-ignore=$HOME/.ignore --skip-vcs-ignores'
 alias rg='rg --path-separator="//"'
-alias r=ranger-cd
-
-
 
 if [ ! -x "$(which tree 2>/dev/null)" ]
 then
@@ -59,3 +55,19 @@ alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date
 
 # make date folders
 alias mkdate='mkdir "$(date +'%Y%m%d')"'
+
+# Automatically change the directory in bash after closing ranger
+function ranger-cd {
+    tempfile="$(mktemp -t tmp.XXXXXX)"
+#    /usr/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}"
+    ~/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}"
+    test -f "$tempfile" &&
+    if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
+        cd -- "$(cat "$tempfile")"
+    fi
+    rm -f -- "$tempfile"
+}
+
+# This binds Ctrl-O to ranger-cd:
+bind '"\C-o":"ranger-cd\C-m"'
+alias r='ranger-cd'
diff --git a/.config/bash/functions b/.config/bash/functions
deleted file mode 100644 (file)
index c265d39..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-# Automatically change the directory in bash after closing ranger
-function ranger-cd {
-    tempfile="$(mktemp -t tmp.XXXXXX)"
-    /usr/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}"
-    test -f "$tempfile" &&
-    if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
-        cd -- "$(cat "$tempfile")"
-    fi
-    rm -f -- "$tempfile"
-}
-
-# This binds Ctrl-O to ranger-cd:
-bind '"\C-o":"ranger-cd\C-m"'