Skip to content

Commit

Permalink
added .tmBundle as a possible zipfile extension
Browse files Browse the repository at this point in the history
  • Loading branch information
lunixbochs committed Jul 26, 2011
1 parent e53ab3d commit 269cfff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sniptastic.py
Expand Up @@ -102,13 +102,13 @@ def find_snippets():
f = open(path, 'rb')
new_snippets.append(parse_snippet(f, ext))
f.close()
elif ext == '.sublime-package':
elif ext in ('.sublime-package', '.tmBundle'):
new_snippets += read_zip(path)

except:
pass

# Installed Packages folder
# Installed Packages
for root, dirs, files in os.walk(sublime.installed_packages_path()):
for name in files:
try:
Expand Down

0 comments on commit 269cfff

Please sign in to comment.