Skip to content

Instantly share code, notes, and snippets.

@astronaughts
Created December 13, 2013 08:02
Show Gist options
  • Save astronaughts/7941152 to your computer and use it in GitHub Desktop.
Save astronaughts/7941152 to your computer and use it in GitHub Desktop.
Sublime Text 2/3 でインストール済みの Packages をコンソールで出力するワンライナー
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