mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
Add :ruby, :rubyfile, and :rubydo ex commands
This commit is contained in:
@@ -897,6 +897,21 @@ void ex_pydo(exarg_T *eap)
|
||||
script_host_do_range("python", eap);
|
||||
}
|
||||
|
||||
void ex_ruby(exarg_T *eap)
|
||||
{
|
||||
script_host_execute("ruby", eap);
|
||||
}
|
||||
|
||||
void ex_rubyfile(exarg_T *eap)
|
||||
{
|
||||
script_host_execute_file("ruby", eap);
|
||||
}
|
||||
|
||||
void ex_rubydo(exarg_T *eap)
|
||||
{
|
||||
script_host_do_range("ruby", eap);
|
||||
}
|
||||
|
||||
void ex_python3(exarg_T *eap)
|
||||
{
|
||||
script_host_execute("python3", eap);
|
||||
|
Reference in New Issue
Block a user