view src/which.sh @ 25070:f397a21b3e4c v8.2.3072

patch 8.2.3072: "zy" does not work well when "virtualedit' is "block" Commit: https://github.com/vim/vim/commit/7d7bcc6ba01454c1cbb1dcbf5f11c3a4051535d6 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 28 21:54:27 2021 +0200 patch 8.2.3072: "zy" does not work well when "virtualedit' is "block" Problem: The "zy" command does not work well when 'virtualedit' is set to "block". (Johann H?chtl) Solution: Make endspaces zero. (Christian Brabandt, closes #8468, closes #8448)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Jun 2021 22:00:05 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# which.sh -- find where an executable is located.  It's here because the
# "which" command is not supported everywhere.  Used by Makefile.

IFS=":"
for ac_dir in $PATH; do
	if test -f "$ac_dir/$1"; then
		echo "$ac_dir/$1"
		break
	fi
done