Skip to content

Instantly share code, notes, and snippets.

@SKalt
Created July 3, 2018 19:27
Show Gist options
  • Save SKalt/b1e301133a0e91360c25edbb976a1ddf to your computer and use it in GitHub Desktop.
Save SKalt/b1e301133a0e91360c25edbb976a1ddf to your computer and use it in GitHub Desktop.
List all available service names in the atom editor
/* global atom */
const allServiceNames = () => {
return atom.packages.serviceHub.providers.map((s) => {
return Object.values(s.servicesByVersion)
.map((v) => Object.keys(v));
}).reduce((acc, red) => acc.concat(...red), []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment