about summary refs log tree commit diff
path: root/exman.sh
diff options
context:
space:
mode:
Diffstat (limited to 'exman.sh')
-rw-r--r--exman.sh58
1 files changed, 0 insertions, 58 deletions
diff --git a/exman.sh b/exman.sh
deleted file mode 100644
index 9b6777d..0000000
--- a/exman.sh
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/bin/sh
-set -eu
-
-die() {
-	echo "$@" >&2
-	exit 1
-}
-
-script=$0
-path=${script%/*}
-prefix=${path%/bin}
-exman="${prefix}/share/exman"
-[ -d "${exman}" ] || exman=$prefix
-
-system=${1:-}
-[ -n "${system}" ] || die 'What system do you want?'
-shift
-
-export MANPATH="${exman}/${system}"
-[ -d "${MANPATH}" ] || die "No manuals for ${system}"
-
-export MANSECT
-for sect in "${MANPATH}"/man*/; do
-	sect=${sect%/}
-	sect=${sect##*/man}
-	MANSECT="${MANSECT:-}${MANSECT:+:}${sect}"
-done
-
-# macOS man(1) refuses to search in directories such as "man3p", so do it
-# manually here unless there are other flags passed.
-hack() {
-	case "${1:-}" in
-		(-*) exec man "$@";;
-		([0-9]*) MANSECT=$1; shift;;
-	esac
-	[ $# -gt 0 ] || die 'What manual page do you want?'
-	for page in "$@"; do
-		found=0
-		IFS=:
-		for sect in $MANSECT; do
-			path="${MANPATH}/man${sect}/${page}"
-			for ext in ".${sect}" ".${sect}.gz"; do
-				[ -f "${path}${ext}" ] || continue
-				man "${path}${ext}"
-				found=1
-				break
-			done
-			[ $found -eq 0 ] || break
-		done
-		[ $found -ne 0 ] || die "No manual entry for ${page}"
-	done
-}
-
-if [ "$(uname)" = 'Darwin' ]; then
-	hack "$@"
-else
-	exec man "$@"
-fi
low=1'>Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe It's actually in a good state now, I think. 2019-02-21Replace "view" with "window"June McEnroe I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy. 2019-02-21Remove ROT13June McEnroe It's just not convenient when it can only do the whole line... 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe Otherwise the "Traveling" message isn't visible while connecting. 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe