How to search for a setting inside Atom package settings

atom-editor

Using Github's Atom, I installed the atom-beautify package.
This package has hundreds of lines of configurable settings.

My expectation was that hitting CMD + F would allow me to search for a string within these settings (e.g. CSS - Indent should find that setting – I am currently getting No results found...).

However, the find box that opens does nothing.

To clarify, I'm not asking how to Filter packages by name from the Packages view; I'm asking how to search for specific settings within a package settings page.

Screenshot

Thanks for the help.

Best Answer

According to the issue #394 (and other referenced issues) seems like it is impossible to look for any setting in the Atom settings view.

I suggest you to configure the package with a configuration file using the following documentation - https://github.com/Glavin001/atom-beautify/blob/master/docs/options.md.

Related Question