view src/which.sh @ 27944:05fa2837e8a1 v8.2.4497

patch 8.2.4497: wrong color for half of wide character next to pum scrollbar Commit: https://github.com/vim/vim/commit/35d8c2010ea6ee5c9bcfa6a8285648172b92ed83 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 3 11:46:00 2022 +0000 patch 8.2.4497: wrong color for half of wide character next to pum scrollbar Problem: Wrong color for half of wide character next to pum scrollbar. Solution: Redraw the screen cell with the right color. (closes https://github.com/vim/vim/issues/9874)
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Mar 2022 13:00:03 +0100
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