bin/perldoc

Tue, 21 Apr 2020 22:00:13 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 21 Apr 2020 22:00:13 -0500
changeset 855
3123a01b8e73
parent 774
d6a54f86ab10
permissions
-rwxr-xr-x

Don't stopinsert if completing - bad interaction with vim-lsp omni preview

#!/bin/sh
set -eu

if [ -t 1 ]; then
  export PERLDOC="-oterm ${PERLDOC:-}"
fi

if [ -x "$(command -v cpandoc)" ]; then
  exec cpandoc $*
fi

BIN="$(which -a perldoc | grep -v $0 | head -n 1)"
exec $BIN $*

mercurial