Skip to content

Commit f85febd

Browse files
committed
Merge branch 'master' of https://github.com/Microsoft/TypeScript-Sublime-Plugin into issue199
2 parents e534c6a + 2f32d32 commit f85febd

36 files changed

+99
-68
lines changed

TypeScript.py renamed to main.py

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
import sys
2+
import os
23

3-
# Sublime/Python 2 & 3 differ in the name of this module, thus package import
4-
# needs to be handled slightly differently
54
if sys.version_info < (3, 0):
6-
from libs import *
7-
from libs.reference import *
8-
from libs.view_helpers import *
9-
from listeners import *
10-
from commands import *
5+
from typescript.libs import *
6+
from typescript.libs.reference import *
7+
from typescript.libs.view_helpers import *
8+
from typescript.listeners import *
9+
from typescript.commands import *
1110
else:
12-
from .libs import *
13-
from .libs.reference import *
14-
from .libs.view_helpers import *
15-
from .listeners import *
16-
from .commands import *
11+
from .typescript.libs import *
12+
from .typescript.libs.reference import *
13+
from .typescript.libs.view_helpers import *
14+
from .typescript.listeners import *
15+
from .typescript.commands import *
1716

1817
# Enable Python Tools for visual studio remote debugging
1918
try:

typescript/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)