def run(self, edit):
try:
if(player.index == len(player.titles_list) - 1):
player.index = 0
else:
player.index = player.index + 1
if(os.path.exists(player.path_list[player.index]) == False):
if(player.index == len(player.titles_list) - 1):
player.index = 0
reload_lists()
player.set_media(player.media_list_mod[player.index])
sublime.status_message(player.titles_list[player.index])
player.play()
except Exception:
sublime.status_message("Add a Song path")
评论列表
文章目录