functions/xhashd
author Mikael Berthe <mikael@lilotux.net>
Sat, 20 Aug 2022 14:39:34 +0200
changeset 56 d065bc0c6991
parent 22 f84d194b7d99
permissions -rw-r--r--
viml: Pass all args to vim


### xhashd(): check for directory, then create hash -d
# Copied and slightly modified from Franck Terbeck zsh configuration.
# https://dev.0x50.de/projects/ftzsh/repository

local key val com
if (( ${#argv} == 0 )) ; then
    printf 'xhashd(): Missing argument.\n'
    return 1
fi
if (( ${#argv} > 1 )) ; then
    printf 'xhashd(): Too many arguments %s\n' "${#argv}"
    return 1
fi

key="${1%%\=*}" ;  val="${1#*\=}"
val=${val/#\~\//$HOME/}
[[ -d ${val} ]] && hash -d -- "${key}=${val}"
return 0