Skip to content

Commit 2158887

Browse files
author
deathaxe
authored
Hide auto-generated python 3.3 package from Package Control (#222)
This commit adds creation of `.hidden-sublime-package` file to hide python 3.3 helper package from Package Control's quick panels.
1 parent be49498 commit 2158887

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ut.py

+6
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ def plugin_loaded():
106106
except FileExistsError:
107107
pass
108108

109+
try:
110+
# hide from Package Control quick panels
111+
open(os.path.join(UT33, ".hidden-sublime-package"), 'x').close()
112+
except FileExistsError:
113+
pass
114+
109115
except OSError as e:
110116
print("UnitTesting: Error while creating python 3.3 module, since", str(e))
111117

0 commit comments

Comments
 (0)