# -*- shell-script -*-

#DESCRIPTION:  Open a programs info manual and open the invoking chapter
#USAGE:        iv [program]

iv () {
	__texinfo="$1"
	shift 1
	info "(${__texinfo})" invoking "$@"
	unset __texinfo
}


#DESCRIPTION:  Open a programs info manual and try to select a usage page
#USAGE:        iu [program] [node]

iu () {
	info --usage "$@"
}


#DESCRIPTION:  Open a programs info manual
#USAGE:        i [program] [node]

i () {
	__texinfo="$1"
	shift 1
	info "(${__texinfo})" "$@"
	unset __texinfo
}