Created
December 13, 2013 08:02
-
-
Save astronaughts/7941152 to your computer and use it in GitHub Desktop.
Sublime Text 2/3 でインストール済みの Packages をコンソールで出力するワンライナー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function; import os; packs = [print(pack) for pack in os.listdir(sublime.packages_path())] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment