Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atom packages list without disabled ones

Tags:

atom-editor

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 don't want to include disabled ones. And I have a lot of disabled packages.

like image 658
Даниил Пронин Avatar asked Nov 04 '16 15:11

Даниил Пронин


People also ask

How do I find packages in Atom?

Open Atom, go to edit > preferences > install and search for the package you wish to install.

How do I download Atom packages manually?

There are mainly two ways to install packages for Atom: Enter apm install package-name on your terminal. Obviously, the Atom package manager, apm, must be installed (you can enter apm to verify installation). Open Atom and go to edit > preferences > install and then search for the package you want to install.

Where are Atom packages saved?

These Atom packages can be found at the Atom > Packages webpage. Among other things, these packages can: Extend the functionality of Atom.


2 Answers

go to atom -> install new package -> and you will see all the installed and activated packages first

like image 73
Idan Tabachnik Avatar answered Sep 28 '22 06:09

Idan Tabachnik


Currently apm can't list only enabled packages. You can perhaps use package-manager-commands and list all enabled packages to disable:

package-manager:disable-package
like image 45
Divyanshu Maithani Avatar answered Sep 28 '22 06:09

Divyanshu Maithani