这很好地解释了我的问题:
http://www.sublimetext.com/forum/viewtopic.php?f=3&t=8513
在 python 交互式终端中运行以下命令有效,但在添加为 sublime text 2 插件时无效:
import webbrowser
webbrowser.open_new_tab('http://google.com')
我需要在浏览器中预览 HTML 页面。
编辑:在崇高的文本中,我得到类似的东西:
webbrowser.Error: could not locate runnable browser
编辑
我什至试过这个:
import sublime, sublime_plugin
import webbrowser
from subprocess import call
class OpenBrowserCommand(sublime_plugin.TextCommand):
def run(self,edit):
url = self.view.file_name()
url = '"file://{url}"'.format(url=url)
firefox = '"/Applications/Firefox.app"'
print url
call(["open", "-a", firefox, url])