-
Notifications
You must be signed in to change notification settings - Fork 367
/
kpsewhich.py
38 lines (31 loc) · 1.01 KB
/
kpsewhich.py
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
import traceback
import sublime
from .latextools_utils.external_command import (
check_output, CalledProcessError
)
__all__ = ['kpsewhich']
def kpsewhich(filename, file_format=None, notify_user_on_error=False):
# build command
command = ['kpsewhich']
if file_format is not None:
command.append('-format=%s' % (file_format))
command.append(filename)
try:
return check_output(command)
except CalledProcessError as e:
if notify_user_on_error:
sublime.error_message(
'An error occurred while trying to run kpsewhich. '
'Files in your TEXINPUTS could not be accessed.'
)
if e.output:
print(e.output)
traceback.print_exc()
except OSError:
if notify_user_on_error:
sublime.error_message(
'Could not run kpsewhich. Please ensure that your texpath '
'setting is correct.'
)
traceback.print_exc()
return None