home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0a4aab041098584b9b75485e68209cd254f7ea92
parent 2f154c1104fc858ac8ef008fc09338388e720910
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 28 Jun 2019 19:20:41 +0200

j: depth to 3

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/assets/zsh/j | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/profiles/assets/zsh/j b/modules/profiles/assets/zsh/j @@ -20,11 +20,11 @@ if [[ -n ${fnd} ]];then [[ -n ${zz} ]] && { echo "ZSHZ: ${zz}"; [[ -z ${opt_p} ]] && cd ${zz}; return;} } - local results=($(fd -d 2 -t d . ${root}|egrep -i "${fnd}")) + local results=($(fd -d 3 -t d . ${root}|egrep -i "${fnd}")) [[ ${#results} == 1 ]] && { echo ${results}; [[ -z ${opt_p} ]] && cd ${results} ; return;} [[ ${#results} == 0 ]] && { echo "No results found for ${fnd}"; return 1;} args="-q ${fnd}" fi -res=$(fd -d 2 -t d . ${root}|sed "s,${root},,"|fzf --height 50% --border ${args}) +res=$(fd -d 3 -t d . ${root}|sed "s,${root},,"|fzf --height 50% --border ${args}) [[ -n ${res} ]] && {echo ${root}${res}; [[ -z ${opt_p} ]] && cd ${root}${res} ; }