diff options
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index b9f2d1f0d2..dc04835774 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -797,6 +797,20 @@ void ex_pydo(exarg_T *eap) script_host_do_range("python", eap); } +void ex_python3(exarg_T *eap) +{ + script_host_execute("python3", eap); +} + +void ex_py3file(exarg_T *eap) +{ + script_host_execute_file("python3", eap); +} + +void ex_pydo3(exarg_T *eap) +{ + script_host_do_range("python3", eap); +} /* Command line expansion for :profile. */ static enum { |