List of Atom packages without disconnected

How can I get a list of all installed and activated plugins in Atom?

I can use apm list --installed --bare to get all installed packages, but I do not want to include disconnected ones. And I have a lot of disabled packages.

+6
source share
4 answers

Currently apm cannot display only included packages. You can use package-manager-commands and list all included packages to disable:

 package-manager:disable-package 
+1
source

go to atom → install a new package → and first you will see all installed and activated packages

+2
source

You can use ::getActivePackages() , which will return a list of active packages.

See the official documentation here:

Hope this helps you in some way (y).

+1
source

apm list --installed --enabled

from apm == 1.18.12 .

+1
source

Source: https://habr.com/ru/post/1012041/


All Articles