remove print statements in non logging functions
Some checks failed
Luacheck / luacheck (push) Has been cancelled

This commit is contained in:
ksyasuda 2024-08-28 18:40:12 -07:00
parent 870f7473cf
commit 0739b93e3a
No known key found for this signature in database

View File

@ -201,9 +201,7 @@ end
-- Function to split the clipboard_command into it's parts and return as a table
local function _split_command(cmd)
local components = {}
for arg in cmd:gmatch("%S+") do
table.insert(components, arg)
end
for arg in cmd:gmatch("%S+") do table.insert(components, arg) end
_remove_command_quotes(components)
return components
end
@ -223,9 +221,6 @@ end
-- returns the content of the clipboard
function YouTubeQueue.get_clipboard_content()
local command = _split_command(options.clipboard_command)
for i, v in ipairs(command) do
print(i, v)
end
local res = mp.command_native({
name = "subprocess",
playback_only = false,
@ -601,8 +596,8 @@ function YouTubeQueue.remove_from_queue()
table.remove(video_queue, selected_index)
mp.commandv("playlist-remove", selected_index - 1)
if current_video and current_video.video_name then
print_osd_message("Deleted " .. current_video.video_name .. " from queue.",
MSG_DURATION)
print_osd_message("Deleted " .. current_video.video_name ..
" from queue.", MSG_DURATION)
end
if selected_index > 1 then selected_index = selected_index - 1 end
index = index - 1