__httm-snapshot() {
command httm --snap 2>/dev/null "$1" || \
command sudo httm --snap "$1" || \
echo "httm snapshot widget quit with a snapshot error. Check you have the correct permissions to snapshot."; return 1
local ret=$?
echo
return $ret
}
httm-snapshot-widget() {
local input_file
local canonical_path
if [[ $( type "__fsel" 2>/dev/null | grep -q "function" ) -eq 0 ]]
then
input_file="$(__fsel)"
[[ -z "$input_file" ]] || canonical_path="$(readlink -f $input_file)"
else
canonical_path="$PWD"
fi
[[ -z "$canonical_path" ]] || __httm-snapshot "$filename"
local ret=$?
zle reset-prompt
return $ret
}
zle -N httm-snapshot-widget
bindkey '\ed' httm-snapshot-widget
httm-lookup-widget() {
echo
command httm -r -R
local ret=$?
zle reset-prompt
return $ret
}
zle -N httm-lookup-widget
bindkey '\em' httm-lookup-widget
__httm-select() {
command httm -s -R | \
while read item; do
echo -n "${item}"
done
local ret=$?
echo
return $ret
}
httm-select-widget() {
LBUFFER="${LBUFFER}$(__httm-select)"
local ret=$?
zle reset-prompt
return $ret
}
zle -N httm-select-widget
bindkey '\es' httm-select-widget