view src/which.sh @ 31105:46d1a434784b v9.0.0887

patch 9.0.0887: cannot easily try out what codes various keys produce Commit: https://github.com/vim/vim/commit/a44c7811ff1c5519ac9acd6a34c58c98366f5c5f Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 15 22:59:07 2022 +0000 patch 9.0.0887: cannot easily try out what codes various keys produce Problem: Cannot easily try out what codes various keys produce. Solution: Add a script to gather key code information, with an initial list of codes to compare with.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Nov 2022 00:00:04 +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