added global functions

This commit is contained in:
Scott E. Graves 2022-07-29 11:29:05 -05:00
parent 6f3818cc42
commit ed2519633b

View File

@ -276,6 +276,10 @@ _G.Flutter_Companion_Run_Selected_Device = function()
end end
end end
_G.Flutter_Companion_Select_Device = function()
M.flutter_list(false)
end
_G.Flutter_Companion_Clear_Selected_Emulator = function() _G.Flutter_Companion_Clear_Selected_Emulator = function()
local config_path = get_config_path() local config_path = get_config_path()
local config_data = load_table(config_path) local config_data = load_table(config_path)
@ -302,4 +306,8 @@ _G.Flutter_Companion_Run_Selected_Emulator = function()
end end
end end
_G.Flutter_Companion_Select_Emulator = function()
M.flutter_list(true)
end
return M return M