-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathGraphvizPreview.py
More file actions
41 lines (32 loc) · 1.2 KB
/
GraphvizPreview.py
File metadata and controls
41 lines (32 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import sublime, sublime_plugin
from subprocess import call
import os
import platform
try: # python 3
from .helpers import surroundingGraphviz, graphvizPDF, ENVIRON
except ValueError: # python 2
from helpers import surroundingGraphviz, graphvizPDF, ENVIRON
class GraphvizPreviewCommand(sublime_plugin.TextCommand):
def run(self, edit):
sel = self.view.sel()[0]
if not sel.empty():
code = self.view.substr(sel).strip()
else:
code = surroundingGraphviz(
self.view.substr(sublime.Region(0, self.view.size())),
sel.begin()
)
if not code:
sublime.error_message('Graphviz: Please place cursor in graphviz code before running')
return
pdf_filename = graphvizPDF(code)
try:
if platform.system() == 'Windows':
os.startfile(pdf_filename)
elif platform.system() == 'Linux':
call(['xdg-open', pdf_filename], env=ENVIRON)
else:
call(['open', pdf_filename], env=ENVIRON)
except Exception as e:
sublime.error_message('Graphviz: Could not open PDF, ' + str(e))
raise e