9 lines
287 B
Bash
Executable file
9 lines
287 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# our vim config is setup to not auto-load sessions if we set the
|
|
# `asmanviewer` variable, so launch vim that way when using vim as our man
|
|
# page viewer
|
|
|
|
"$EDITOR" --cmd "let asmanviewer=1" -c "SuperMan $*"
|
|
[ "$?" != "0" ] && echo "No manual entry for $*" && exit 1
|