support for :perl, :perlfile, :perldo and perleval()

This commit is contained in:
Jacques Germishuys
2020-08-29 22:12:10 +01:00
parent c6648fe882
commit 9bef25314e
10 changed files with 205 additions and 6 deletions

View File

@@ -6374,6 +6374,14 @@ static void f_pyxeval(typval_T *argvars, typval_T *rettv, FunPtr fptr)
}
}
///
/// "perleval()" function
///
static void f_perleval(typval_T *argvars, typval_T *rettv, FunPtr fptr)
{
script_host_eval("perl", argvars, rettv);
}
/*
* "range()" function
*/