Commit 9b4e85b6 authored by Pierre Ynard's avatar Pierre Ynard

Revert "RC: try the vlm commands later in the process"

This reverts commit d570f62e.
It causes more spurious messages than not.
parent 163dbff0
...@@ -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