elio 1.7.0

Snappy, batteries-included terminal file manager with rich previews, inline images, bulk actions, and trash support.
Documentation
mod languages;
mod shell;
mod structured;
mod tooling;
mod web;

use super::types::RegistryEntry;

const GROUPS: &[&[RegistryEntry]] = &[
    structured::LANGUAGES,
    web::LANGUAGES,
    tooling::LANGUAGES,
    languages::LANGUAGES,
    shell::LANGUAGES,
];

pub(super) fn all_languages() -> impl Iterator<Item = &'static RegistryEntry> {
    GROUPS.iter().flat_map(|group| group.iter())
}