@@ -106,8 +106,6 @@ alias dpi="identify -format '%x\n' -units PixelsPerInch"
alias rmexif="exiftool -overwrite_original -all="
-alias lf='lfub'
-
alias loc='find -type f | grep -v "README\|\.git\|LICENSE" | xargs wc -l | sort -h'
# fast dir switching
@@ -49,7 +49,7 @@ preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt.
# Use lf to switch directories and bind it to ctrl-p
lfcd () {
tmp="$(mktemp)"
- lfub -last-dir-path="$tmp" "$@"
+ lf -last-dir-path="$tmp" "$@"
if [ -f "$tmp" ]; then
dir="$(cat "$tmp")"
rm -f "$tmp"