Export list of installed packages in SublimeText

Viewed 8046

I am aware that I can see all installed packages in Sublime using Ctrl+Shift+P and selecting Package Control: List Packages.

I have many packages installed (>20) and I need a way to export their names (and ideally also the link to their https://packagecontrol.io/ page) to a text file or similar output.

Can this be done at all?

3 Answers

The accepted answer unfortunately didn't work for me. Then I found that in Windows 10 (at least for ST 3) you can obtain what you want by listing the files contained in

C:\Users\<your_user_name>\AppData\Roaming\Sublime Text 3\Installed Packages

But some installed packages might be missing from this list ! Crosscheck your result with the content of the directory

C:\Users\<your_user_name>\AppData\Roaming\Sublime Text 3\Packages
  1. Install Sublime Package Control
  2. From inside Sublime Text, open Package Control's Command Pallet: CTRL SHIFT P (Windows, Linux) or CMD SHIFT P (Mac).
  3. Type install package, select command Package Control: Install Package and hit Return/Enter. A list of available packages will be displayed.
  4. From inside Sublime Text, open Package Control's Command Pallet: CTRL SHIFT P (Windows, Linux) or CMD SHIFT P (Mac).
  5. Type PackageSync, select the PackageSync package and hit Return/Enter. The package will be downloaded to the appropriate directory.
Related