vim/view_wrapper
DistroBaker 9bd1da6079 Merged update from upstream sources
This is an automated DistroBaker update from upstream sources.
If you do not know what this is about or would like to opt out,
contact the OSCI team.

Source: https://src.fedoraproject.org/rpms/vim.git#59d01ce8eff3f86ac29903dbeb7d2ec5756b46f1
2021-02-09 10:35:46 +00:00

11 lines
150 B
Bash

#!/usr/bin/sh
# run vim -R if available
if test -f /usr/bin/vim
then
exec /usr/bin/vim -R "$@"
fi
# run vi otherwise
exec /usr/libexec/vi -R "$@"