forked from aniani/vim
patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Problem: Vim9: value of 'edcompatible' and 'gdefault' are used. Solution: Ignore these deprecated options in Vim9 script. (closes #7508)
This commit is contained in:
@@ -3778,6 +3778,15 @@ ex_substitute(exarg_T *eap)
|
||||
++cmd;
|
||||
else
|
||||
{
|
||||
#ifdef FEAT_EVAL
|
||||
if (in_vim9script())
|
||||
{
|
||||
// ignore 'gdefault' and 'edcompatible'
|
||||
subflags.do_all = FALSE;
|
||||
subflags.do_ask = FALSE;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
if (!p_ed)
|
||||
{
|
||||
if (p_gd) // default is global on
|
||||
|
Reference in New Issue
Block a user