We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb96f1 commit 55972c0Copy full SHA for 55972c0
1 file changed
advanced_new_file/commands/command_base.py
@@ -11,8 +11,12 @@
11
from ..completions.windows_completion import WindowsCompletion
12
13
if not IS_ST3:
14
+ if PLATFORM == "windows":
15
+ import sys
16
+ sys.path.append(os.path.dirname(sys.executable))
17
from ..lib.ushlex import split as st2_shlex_split
18
19
+
20
VIEW_NAME = "AdvancedNewFileCreation"
21
22
class AdvancedNewFileBase(object):
0 commit comments