99 lines
3.0 KiB
Plaintext
99 lines
3.0 KiB
Plaintext
# Utilities for file system navigation
|
|
|
|
# Useful when the current directory was recreated
|
|
alias recd='cd $PWD'
|
|
# [c]hange [d]irectory [e]xisting - cd into the first existing directory
|
|
cde() {
|
|
local _dir="$1"
|
|
while ! test -d "$_dir"
|
|
do _dir="$(dirname "$_dir")"
|
|
done
|
|
cd "$_dir" "${@:2}"
|
|
}
|
|
|
|
# Go up a number of dirs
|
|
up() {
|
|
if [[ $# < 1 ]] ; then
|
|
cd ..
|
|
else
|
|
CDSTR=""
|
|
for i in {1..$1} ; do
|
|
CDSTR="../$CDSTR"
|
|
done
|
|
cd $CDSTR
|
|
fi
|
|
}
|
|
|
|
# Switch directory & ls
|
|
cl() {
|
|
builtin cd $1
|
|
ls --almost-all --group-directories-first --file-type
|
|
}
|
|
|
|
# cd but search for data dirs and run ls after switching to target dir
|
|
cd() {
|
|
if test -d "$DATA" && test "${1:--}" != "-" -a ! -d "$1" -a $# -eq 1
|
|
then
|
|
dir=$(fd --no-ignore --glob "$1*" "$DATA" --maxdepth 2 --type d --max-results 1)
|
|
test -n "$dir" && cd "$dir"
|
|
else
|
|
builtin cd "$@" &&
|
|
command ls --literal --file-type --color=always --format=vertical -U -w $COLUMNS |
|
|
#pr -4 -l1 -W $COLUMNS -S" " |
|
|
head -3
|
|
code=$? && test $code -eq 141 || return $code
|
|
fi
|
|
}
|
|
|
|
# LOCATE {{{1
|
|
alias fselect='fzf -0 -1 --reverse --height=30% | while read f; do test -d "$f" && cd "$f" || b "$f"; done'
|
|
loci() {
|
|
locate --all --ignore-case --basename --existing "$@" |
|
|
command grep --extended-regexp --ignore-case --color=always $(echo "$|${@:$#}" | sed 's/ /|/g') | fselect
|
|
}
|
|
alias loc='noglob loci'
|
|
alias uloc='noglob sudo updatedb && loci'
|
|
# locate exactly
|
|
locei() { locate --all --basename "\\$1" "$@" | fselect }
|
|
alias loce='noglob locei'
|
|
# locate all
|
|
alias loca='noglob sudo updatedb --prunenames "" --prunefs "" --prunepaths "/var/cache" -o /var/cache/locate-all.db && loci --database /var/cache/locate-all.db'
|
|
|
|
# ZOXIDE {{{1
|
|
alias c=z
|
|
# Listing for quick directory switcher based on zoxide and fzf
|
|
alias zoxide-list='noglob zoxide query -sl'
|
|
# fzf for zoxide
|
|
zoxide-fzf() {
|
|
# returns the selected path stripped of its score
|
|
fzf -0 -1 -n2.. --tiebreak=index \
|
|
--preview-window=20% --preview="ls -a --color --human-readable --group-directories-first --file-type {2..}" \
|
|
--height=80% --reverse |
|
|
sed 's|.* /|/|'
|
|
}
|
|
# Locate directories and add 0 zoxide score
|
|
locate-zox() {
|
|
locate --basename --ignore-case "$@" |
|
|
while read -r file; do test -d "$file" && echo "$file"; done |
|
|
sed 's/^/ 0 /'
|
|
}
|
|
# Switch directory heuristically using zoxide and locate
|
|
d() {
|
|
test "$1" != "-" -a ! -d "$1" -a $# -eq 1 || { cd "$@" && return }
|
|
local query="$(zoxide-list "$@")"
|
|
# First find out whether there is an obvious match
|
|
# (score at least ten times above runner-up and score above 20)
|
|
# If not select with fzf, using locate to find extra options
|
|
cd "$(if test -n "$query" &&
|
|
expr "$(echo "$query" | sed 's| \+\([^ ]\+\).*|\1|;q')" \> 20 \& \
|
|
$(echo "$query" | sed 'N;s|/.* \([0-9]\)|> 10 * \1|;q' | sed 's| */.*||') >/dev/null #2>&1
|
|
then echo "$query" | head -1
|
|
else test -n "$query" && echo "$query"; locate-zox "$@"
|
|
fi | zoxide-fzf)"
|
|
}
|
|
# Switch directory interactively using zoxide and locate
|
|
di() {
|
|
test "$1" = "-" || local dir=$({ zoxide-list "$@"; locate-zox "$@" } | zoxide-fzf)
|
|
cd "${dir:-$1}"
|
|
}
|