964c29439c
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/vim#64066330a22b17c25467dffb1d58f7f56c40128a
6 lines
117 B
Bash
6 lines
117 B
Bash
# Ensure vim is set as EDITOR if it isn't already set
|
|
|
|
if [ -z "$EDITOR" ]; then
|
|
export EDITOR="/usr/bin/vim"
|
|
fi
|