#!/bin/sh # open info-page, man-page or command help # depends: unbuffer # optdepends: highlight(dotfiles) paginate="${PAGER:-less} +Gg" test "$1" = "-d" && browse=1 && shift showinfo() { which info >/dev/null 2>&1 && case $EDITOR in (*emacs*) $EDITOR --eval "(progn (info \"$1\") (if \"$2\" (Info-index \"$2\")) (delete-other-windows))";; (*vim) info "$@" -w | grep -q . && $EDITOR -R -M -c "Info $1" +only;; (*) info -f "$1" $(test "$2" && echo "--index-search=$2") 2>/dev/null;; esac } cmd="$1" case "$cmd" in (zsh|zmv) # https://unix.stackexchange.com/questions/19290/zmv-for-zsh-dry-runs-and-man-pages for last; do true; done # need to install zsh-doc package for info pages showinfo zsh $(test "$last" != zsh && echo "$last") || LESS="$LESS +/^ *$last *\\[" man zshall;; (gh|chordpro|bat|pdfjam|reflector|topgrade|r128gain|7z|kubectl|diffr|docker) unbuffer "$@" --help | $paginate;; (caddy|stretchly|go|fossil) test "$cmd" = "fossil" -a $# -eq 1 && repo="$(locate -b -l 1 "fossil*.fossil")" && fossil ui "$repo" && exit # TODO view fossil ui in terminal shift "$cmd" help "$@" | $paginate;; (doom) "$@" --help;; (mpw) "$@" -h 2>&1 | $paginate;; (rails) { "$@" -H && "$@" --help; } | $paginate;; (plantuml) unbuffer "$@" -help | $paginate;; (vlc) shift && unbuffer vlc --full-help "$@" | $paginate;; (kdeconnect*) shift && kdeconnect-cli --help-all "$@" | $paginate;; (pandoc) man pandoc; highlight "Extensions" && pandoc --list-extensions | paste -s -d' ';; (swaymsg) test $# -gt 1 && shift && man sway "$@" || man swaymsg;; (swaymsg-*) man sway "${1#swaymsg-}";; (*) { showinfo "$@" || man "$@"; } || if which "$cmd" >/dev/null then { "$@" --help || { test $? == 1 && "$@" -help; } || { test $? == 1 && "$@" -h; }; } 2>&1 | $paginate fi;; esac docs="/usr/share/doc/$cmd" if test -d "$docs"; then if test -z "$browse" then echo "Find more in $docs" else len() { echo "$1" | wc -c; } shortest() { read shortest while read in do test $(len $shortest) -gt $(len $in) && shortest=$in done echo $shortest } firefox "file://$(find $docs -name index.html | shortest | grep . || find $docs -name $1*.html | shortest)" fi fi