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
119 B
Tcsh
6 lines
119 B
Tcsh
# Ensure vim is set as EDITOR if it isn't already set
|
|
|
|
if ( ! ($?EDITOR) ) then
|
|
setenv EDITOR "/usr/bin/vim"
|
|
endif
|