Commit d570f62e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

RC: try the vlm commands later in the process

Works-around #5396
parent ee6270cc
...@@ -697,11 +697,11 @@ function client_command( client ) ...@@ -697,11 +697,11 @@ function client_command( client )
elseif string.sub(cmd,0,1)=='@' elseif string.sub(cmd,0,1)=='@'
and call_object_command(string.sub(cmd,2,#cmd),client,arg) == 0 then and call_object_command(string.sub(cmd,2,#cmd),client,arg) == 0 then
-- --
elseif call_vlm_command(cmd,client,arg) == 0 then
--
elseif client.type == host.client_type.stdio elseif client.type == host.client_type.stdio
and call_libvlc_command(cmd,client,arg) == 0 then and call_libvlc_command(cmd,client,arg) == 0 then
-- --
elseif call_vlm_command(cmd,client,arg) == 0 then
--
else else
local choices = {} local choices = {}
if client.env.autocompletion ~= 0 then if client.env.autocompletion ~= 0 then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment