Wrote my own. This works just fine for my purposes.
import sublime
import sublime_plugin
import os.path
class OpenFilesInListCommand(sublime_plugin.TextCommand):
def run(self, edit):
# Open in this window
this_window = self.view.window()
# Grab contents of current view
view_contents = self.view.substr(sublime.Region(0, self.view.size()))
# Split on newline
view_contents = view_contents.splitlines()
# Go through each line, open each file
for file in view_contents:
if (file == ''):
continue
this_window.open_file(os.path.abspath(file))