#!/bin/ksh
#
# $Revision: d52bc4bf5deb $ $Date: 2026-05-03 03:12:08-0400 $
# $Source: /doc/html/htdocs/dotfiles/top/dot-vim/newvim $
# $Host: furbag $
# $UUID: adc8f7f2-b9d9-493a-9301-7404d118898b $
#
#<newvim: insert a template if we have a matching extension
#         source the file so we can do {pre/post}-processing.

export PATH=/usr/local/bin:/bin:/usr/bin

case "$#" in
    0) exit 0 ;;
    *) file="$1" ;;
esac

test -f "$file" && exec /bin/ksh "$file"
exit 0
