.lib/sh/util.sh@b0a0ba3240b5
.lib/sh/util.sh
Wed, 25 Sep 2024 15:03:13 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 25 Sep 2024 15:03:13 -0500
- changeset 1179
- b0a0ba3240b5
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
warn() { echo "$*" >&2; }
die() { warn "$*"; exit 1; }
clone_or_pull() {
if ! [ -d $2 ]; then
git clone --single-branch --depth 1 "$1" $2
else
echo "$2:"
git -C "$2" pull
fi
}