def openFeedList(self):
packagePath = sublime.packages_path()
matches = []
#self.window.open_file("/feedlist.txt")
for root, dirnames, filenames in os.walk(packagePath):
for filename in fnmatch.filter(filenames, "sublimerss.py"):
matches.append(root)
self.window.open_file(matches[0] + "/feedlist.txt")
评论列表
文章目录